I need my form.php to redirect me to another url

A

Anonymous

Guest
Do you have the page specified in the form element?

You need to post your code so we can see what you might be doing wrong, or a section of it you think is causing the troubles.

Good Luck
 
Let's say your form's action=formscript.php.

At the end of formscript.php, try to do this after all of the script's other tasks are complete:

header("Location: confirmationpage.html");

Oh, yeah, if your script is trying to do something that can't be done (like getting the value of a variable that has never been declared), you'll never get to the end of it....no confirmation is required because there's nothing to confirm.

Pazzoboy
 
Back
Top