Re: [PHP] Go Back Problem

2004-12-02 Thread Afan Pasalic
I solve that problem this way (please correct me if it's wrong) # form.php if(isset($_POST['SubmitForm'])) { if(!isset($_POST['Name'] or !isset($_POST['Phone'] or !isset($_POST['Email']) { echo "One or more required fields are empty."; } else { header('location: res

Re: [PHP] Go Back Problem

2004-12-01 Thread Thomas Goyne
On Thu, 2 Dec 2004 09:58:46 +0800, Cyrus <[EMAIL PROTECTED]> wrote: Dear All, I have a problem of back to the previous page in php. I need to create a form let people to fill in .It can let user to preview the form, if information is not correct , user can back to previous page and corre

RE: [PHP] Go Back Problem

2004-12-01 Thread Vail, Warren
If your php form is entered via a post, my experience is that most browsers do not save post information, therefore, clicking "back" to a page that was entered via a form using the post method, the browser complains that it does not have enough information to display the form, and that you must ret

Re: [PHP] Go Back Problem

2004-12-01 Thread Greg Donald
On Thu, 2 Dec 2004 09:58:46 +0800, Cyrus <[EMAIL PROTECTED]> wrote: > Dear All, > > I have a problem of back to the previous page in php. > I need to create a form let people to fill in .It can let user to preview the > form, if information is not correct , user can back to previous page and

Re: [PHP] Go Back Problem

2004-11-29 Thread Philip Thompson
On Nov 26, 2004, at 7:59 PM, Cyrus wrote: Dear All, I have a problem of back to the previous page in php. I need to create a form let people to fill in .It can let user to preview the form, if information is not correct , user can back to previous page and correct it, I have used the javascri

Re: [PHP] Go Back Problem

2004-11-26 Thread StDog
В сообщении от Суббота 27 Ноябрь 2004 04:59 Cyrus написал(a): > Dear All, > > I have a problem of back to the previous page in php. > I need to create a form let people to fill in .It can let user to preview > the form, if information is not correct , user can back to previous page > and correc