[PHP] No Back Button in forms

2004-04-09 Thread James E Hicks III
On Friday 09 April 2004 02:14 pm, Daniel Clark wrote: Another question envolves the use of the back button. My client wants the use of the back button to be turned off for security reasons for some pages. His preference is to have a page expire if it is arrived on by pressing the back

[PHP] Re: back button and forms

2003-08-20 Thread rush
Tim Winters [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is there any way to avoid this from happening? instead of POST, you could use GET as form method. More nicely, but also much more work, is to use N layers on one page for each group of inputs and to switch layers by

Re: [PHP] Re: back button and forms

2003-08-20 Thread Robert Cummings
GET method has restrictions -- you are only guaranteed proper handling of the first 1024 (or some such limit) after which the behaviour is considered undefined. Thus using the GET method is generally only feasible for small forms. Cheers, Rob. On Wed, 2003-08-20 at 14:08, rush wrote: Tim