LoneWolf wrote:
I am having a problem where it appears that the session is not being saved properly.

While on a page, I can start a session and set variables to it. however, when I go to the next page.. the session variables appear to have been cleared out.

first page:
session_start();

$_SESSION["user_level"] = "test";


How do you move from one page to the other? You have to pass the session along, I believe..
Something like:
$s = SID; // session contant
page2.php?$s

second page:

session_start();

echo $_SESSION["user_level"] ;



We just installed php on the 2003 server. Is there maybe a problem with the php.ini file that I need to fix?


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to