From: [EMAIL PROTECTED] Operating system: Win 2k PHP version: 4.0.6 PHP Bug Type: *Session related Bug description: Can't set any session variable The problem is, that I can't set any session variables when I turn register_globals Off. I read documentation carefully, but following code doesn't work - variable "user" isn't set in main.php. I'm not so sure what's mean of: PHP DOC> only members of the global associative array PHP DOC> $HTTP_SESSION_VARS can be registered as session PHP DOC> variables.The restored session variables will only PHP DOC> be available in the array $HTTP_SESSION_VARS After execute following code, $HTTP_SESSION_VARS["user"] isn't set in main.php. > $user = $s_user; > $HTTP_SESSION_VARS["user"] = $s_user; > session_register("user"); > header("Location: main.php"); > exit; -- Edit Bug report at: http://bugs.php.net/?id=11861&edit=1 -- PHP Development 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]