I am using PHP 4.06, IE 6 and Win 2000.
When i register a session like so:
session_start();
session_register("SESSION_UserID");
and on the next page refer to the session:
session_start();
if(!session_is_registered("SESSION_UserID"))
{
header("Location: error.php?ec=1");
exit;
}
?>
It registers a new session:
I then have a session as so in the sessons directory:
SESSION_UserID|s:1:"1";SESSION_UPERMS|s:1:"1";
and a blank new one.
any ideas?
--
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]