When does a session variable become available? Immediately after the
session_register command or after the script ends?

And if the commands are as follows:

session_start();
session_register("hello");
$hello=3;

will the session variable $hello be set to 3 or do I have to add another
session_register() call after changing the value?

Really appreciate any help,

Nikhil



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to