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 Wint

[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 javas