Hello!
I've spent a lot of time to set any session variable where register_globals option in php.ini is Off, and there was no positive results.
Code:
$user = $s_user;
$HTTP_SESSION_VARS["user"] = $s_user;
session_register("user");
header("Location: main.php");
exit;
executes, but in main.php, value of $HTTP_SESSION_VARS["user"] is "".
Any ideas?
Thanks for help.
mike