Re[2]: [PHP] declaring variables in class definitions

2001-01-10 Thread Max A. Derkachev
appear to be true either, see above. bad practice anyway -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re[4]: [PHP] declaring variables in class definitions

2001-01-11 Thread Max A. Derkachev
other developer which may use or maintain your code looking at this mess. -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http://www.php.net

Re: [PHP] Post without submit?

2001-01-26 Thread Max A. Derkachev
Hello Chris, Friday, January 26, 2001, 8:23:27 AM, you wrote: C is there anyway to post without clicking a submit button? You can, e.g. using javascript event. onSomething="document.forms['formname'].submit()" -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus

Re[2]: [PHP] session question

2001-01-31 Thread Max A. Derkachev
session_register('funky_session_var') instead (the NAME of the variable, not the variable itself). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http

Re: [PHP] Function by reference?

2001-01-31 Thread Max A. Derkachev
$func=urlencode; It won't work. You can not reference a function. But you can call a variable with the function name value. $func = 'urlencode' $func($str) here will do the same as urlencode($str). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (8

Re: [PHP] Mixing PHP code with phplib templates... possible?

2001-02-06 Thread Max A. Derkachev
df be possible, but I'm new at using phplib, so I'm not all that clear df on it... Set the links as template variables and then substitute them with values using Template's set_var(). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53

Re[2]: [PHP] Mixing PHP code with phplib templates... possible?

2001-02-07 Thread Max A. Derkachev
to it, which would append session info to every link on the page. And the last, should-be the best way. Compile PHP with --enable-trans-sid and forget about manual appending the session info to the links and forms. -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing