Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Martin Clifford
There is never a way to disable back, forward, home, etc buttons. They all have shortcuts that will ALWAYS work, so there's really no point. Additionally, it's all nice and good that your site works fine without using cookies, and don't take this offensively, but if the client cannot use the

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Petre
Well, OK, then, How do you design the app NOT to allow the form to POST again when the user hits BACK Martin Clifford wrote: There is never a way to disable back, forward, home, etc buttons. They all have shortcuts that will ALWAYS work, so there's really no point. Additionally, it's all

RE: [PHP] Disabling Browser BACK button

2002-07-31 Thread César Aracena
: Re: [PHP] Disabling Browser BACK button Well, OK, then, How do you design the app NOT to allow the form to POST again when the user hits BACK Martin Clifford wrote: There is never a way to disable back, forward, home, etc buttons. They all have shortcuts that will ALWAYS work, so

RE: [PHP] Disabling Browser BACK button

2002-07-31 Thread Dan Vande More
Clifford Cc: php-general Subject: Re: [PHP] Disabling Browser BACK button Well, OK, then, How do you design the app NOT to allow the form to POST again when the user hits BACK Martin Clifford wrote: There is never a way to disable back, forward, home, etc buttons. They all have shortcuts

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Petre
that the form passed after they are processed. Do I make sence? César -Original Message- From: Petre [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 2:43 PM To: Martin Clifford Cc: php-general Subject: Re: [PHP] Disabling Browser BACK button Well, OK, then, How do you design

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Chris Boget
Page1 (fill in data)-Page2(write data, instant redirect to p1, unless dies from php/mysql) Then the only way to repost, is to push the forward button. Unless, of course, they hit the Submit button again and I think that was the point the original poster was getting at. If the user cannot

RE: [PHP] Disabling Browser BACK button

2002-07-31 Thread César Aracena
Message- From: Petre [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 2:50 PM To: César Aracena Cc: php-general Subject: Re: [PHP] Disabling Browser BACK button I hear you, but how do I know if the POST comes from a valid form submit, or from a back ? I cannot simply unset

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread R'twick Niceorgaw
PM Subject: Re: [PHP] Disabling Browser BACK button Well, OK, then, How do you design the app NOT to allow the form to POST again when the user hits BACK Martin Clifford wrote: There is never a way to disable back, forward, home, etc buttons. They all have shortcuts that will ALWAYS work

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Lee
: César Aracena [EMAIL PROTECTED] To: 'Petre' [EMAIL PROTECTED] Cc: 'php-general' [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 7:06 PM Subject: RE: [PHP] Disabling Browser BACK button Well... you simple can't unless you take advantage from all the wonderful features of PHP like it's capability

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Danny Shepherd
] Disabling Browser BACK button Page1 (fill in data)-Page2(write data, instant redirect to p1, unless dies from php/mysql) Then the only way to repost, is to push the forward button. Unless, of course, they hit the Submit button again and I think that was the point the original poster was getting

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Petre
Exactly. The only way I've seen that this can be prevented is if the form action is PHP_SELF, so, you call the page onto itself and use a isset($submit), but I have reasons for not going that route, one being that I have already have a navigation laid out, and changing that will be a

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Jason Reid
- Original Message - From: Lee [EMAIL PROTECTED] To: César Aracena [EMAIL PROTECTED]; 'Petre' [EMAIL PROTECTED] Cc: 'php-general' [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 12:17 PM Subject: Re: [PHP] Disabling Browser BACK button An Idea I have just had but not tested. To start

Re: [PHP] Disabling Browser BACK button

2002-07-31 Thread Justin French
on 01/08/02 3:42 AM, Petre ([EMAIL PROTECTED]) wrote: Well, OK, then, How do you design the app NOT to allow the form to POST again when the user hits BACK The PHP script that process' the form submission shouldn't be an actual page that sends stuff to the browser. 1. form.php POSTs to