RE: [PHP] Session problem in back button

2003-08-26 Thread Paul Fitzpatrick
Hi, This will stop them seeing the login once they are in a registered session Only diplay the login form if NOT a registered session variable 'sessionname' (or some other session variable) If (!isset($_SESSION['sessionname'])) { //Display login form code goes here } Cheers.

Re: [PHP] Session problem in back button

2003-08-26 Thread murugesan
, 2003 10:43 PM Subject: RE: [PHP] Session problem in back button Hi, This will stop them seeing the login once they are in a registered session Only diplay the login form if NOT a registered session variable 'sessionname' (or some other session variable) If (!isset($_SESSION['sessionname