Re: [PHP] Logged Out of Seesion, Then use back button

2003-09-23 Thread CPT John W. Holmes
From: "Roger Spears" <[EMAIL PROTECTED]> > 1) How can I prevent the use of the browser "back" button after someone > logs out? You don't. You never prevent the use of the back button. When someone logs in, then a session should be started with some content, like you've already mentioned. So, thou

RE: [PHP] Logged Out of Seesion, Then use back button

2003-09-23 Thread Jay Blanchard
[snip] 1) How can I prevent the use of the browser "back" button after someone logs out? [/snip] Set a cookie on login, unset the cookie on logout. Check for cookie, if it doesn't exist display login mechanism. [snip] 2) If, after a user has attained step 3, they use their back button to change

Re: [PHP] Logged Out of Seesion, Then use back button

2003-09-23 Thread Roger Spears
; ?> From: Roger Spears <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Logged Out of Seesion, Then use back button Date: Tue, 23 Sep 2003 11:51:40 -0400 Hello, I've googled to try to find an answer to this. I've also checked the php.net site. Perhaps I'm not usin

Re: [PHP] Logged Out of Seesion, Then use back button

2003-09-23 Thread Didier McGillis
ck=0", false); // HTTP/1.0 header("Pragma: no-cache"); ?> From: Roger Spears <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Logged Out of Seesion, Then use back button Date: Tue, 23 Sep 2003 11:51:40 -0400 Hello, I've googled to try to find an answer to this

[PHP] Logged Out of Seesion, Then use back button

2003-09-23 Thread Roger Spears
Hello, I've googled to try to find an answer to this. I've also checked the php.net site. Perhaps I'm not using the correct search parameters. The only suggestion I've found is the following code: But this doesn't seem to solve my problems. My problem/question is as follows. I have an ema