I have this little application. The first time I run through it, some of the session variables don't show up. But when I go back through it, they will.
Anyone might know what causes this?
session variables are not accessible by the page that sets them unless you do it with $_SESSION[] also make sure you call session_write_close() everytime you call session_open.
Thanks Drawmack, but I am using a $_SESSION['blah'] = $blah.
However, I'm not using session_open. I just use session_start(). COuld this be the problem?