Re: [PHP] processing html forms and keeping the values

2009-11-25 Thread Raymond Irving
From: Merlin Morgenstern merli...@fastmail.fm To: php-general@lists.php.net Sent: Tue, November 24, 2009 12:14:01 PM Subject: [PHP] processing html forms and keeping the values Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all

Re: [PHP] processing html forms and keeping the values

2009-11-25 Thread Merlin Morgenstern
:14:01 PM *Subject:* [PHP] processing html forms and keeping the values Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How could I do

Re: [PHP] processing html forms and keeping the values

2009-11-25 Thread Kim Madsen
Merlin Morgenstern wrote on 2009-11-24 18:38: This is not so easy. I am doing some checking with php on the values and if one failes php returns via GET to the form with the help of header location: $parameter = demo=this; HEADER(Location:/test.html?error=1.$parameter);

[PHP] processing html forms and keeping the values

2009-11-24 Thread Merlin Morgenstern
Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How could I do this while keeping all characters? Thank you for any hint, Merlin -- PHP

Re: [PHP] processing html forms and keeping the values

2009-11-24 Thread Ashley Sheridan
On Tue, 2009-11-24 at 18:14 +0100, Merlin Morgenstern wrote: Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How could I do this

Re: [PHP] processing html forms and keeping the values

2009-11-24 Thread tedd
At 6:14 PM +0100 11/24/09, Merlin Morgenstern wrote: Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How could I do this while keeping all

Re: [PHP] processing html forms and keeping the values

2009-11-24 Thread Merlin Morgenstern
Ashley Sheridan wrote: On Tue, 2009-11-24 at 18:14 +0100, Merlin Morgenstern wrote: Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How

Re: [PHP] processing html forms and keeping the values

2009-11-24 Thread Paul M Foster
On Tue, Nov 24, 2009 at 06:14:01PM +0100, Merlin Morgenstern wrote: Hi there, I am trying to redirect a user back to a html form if a validation failes. The form shoult then hold all entered values. So far I did this over $_GET, but there is a 100 Character limitation. How could I do this