I'm trying to use HTTP_SESSION_VARS all over my scripts for security
reasons.  However, for some reason, when I do the following the var isn't
updated in the session file... anyone know why?

session_start();
session_register("s_myvar");

$HTTP_SESSION_VARS["s_myvar"] = 1;

If I assign the value to just the var it works fine.

$s_myvar = 1;

Thanks.
Jason



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