I have register_globals on for some applications. This causes PHP to bring
all elements of the $HTTP_***_VARS arrays into the GLOBAL namespace.
Somehow, session_unset() does not unset these variables when it is called,
rather, it only unset()'s programmer-created session variables. I would like
to have a function that mimics session_unset(), except that it assigns
session variables to blank rather than unset()'s them (for security
reasons). Is there an *easy* way to access just the programmer-created
session variables? Even on the page where the variables are first
session_register()'d (so that they aren't yet in $HTTP_SESSION_VARS[])?

TIA

Kirk

-- 
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