Hi all,

> 1.If register_globals is on, then doing an unset($_SESSION["blah"]), to unset
> a session variable will not work as the variable will be unset in that
> particular instance but will be restored in next instance of that session.
> Hence session_unregister("blah") also must be used to properly unset the
> session with global_register on. Is this true ?

Wasn't it in this list, where I heard, better not to use session_unregister() any
more?? What do you think about using:
$_SESSION["blah"] = "";
to delete a value?


Regards,
Bastian


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to