|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-24 19:33 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 23:00:01 2025 UTC |
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;