Click to See Complete Forum and Search --> : Sessions


anneveld
08-06-2003, 03:40 AM
Do I have to register all variables every time when a new page is called in the current session ?
Even when i send the SID in a hidden text field or in the referer?

pyro
08-06-2003, 07:34 AM
Unless you have sessions.auto_start (http://us2.php.net/manual/en/ref.session.php#ini.session.auto-start) set in the php.ini file, I believe you have to uses sessions_start() on each page to start the session for that page.

anneveld
08-06-2003, 09:08 AM
Thanks

pyro
08-06-2003, 10:20 AM
You're welcome... :)