Also, make sure the session's are being saved properly.  I had this same 
problem when PHP wasn't able to write to the temp directory.  You can set up 
your own sessions dir with
session.save_path
in php.ini

""LoneWolf"" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
>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";
>
>
>
> 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