RE: [PHP] Registered sessions.

2003-06-05 Thread Ford, Mike [LSS]
> -Original Message- > From: Ed Gorski [mailto:[EMAIL PROTECTED] > Sent: 04 June 2003 13:37 > > You need to append the session name and id to the header > location everytime > you redirect that way. So your header redirect should read: > > header('Location: > researchpapers2.php?'.sess

RE: [PHP] Registered sessions.

2003-06-04 Thread Ed Gorski
You need to append the session name and id to the header location everytime you redirect that way. So your header redirect should read: header('Location: researchpapers2.php?'.session_name().'='.session_id()); When you have normal links to other pages you don't have to do this but on header redi