Forum Moderators: coopster
[url=http://us2.php.net/manual/en/function.header.php]header[/url]("Location: thank_you.html");
Hope this helps!
Good luck! :)
if($showThanks) {
header("Location: thank_you.html");
exit();
}
However you must make sure that no text is sent to the browser before you call the header function otherwise it will not work. Refer to the link for more details.