Users register on my page. It's a multi-page form.
After my insert statement, I have the following code:
[PHP]if(!$insert){
die("There's little problem: ".mysql_error() );
}
echo "Thank you for registering. Please check your inbox for your registration confirmation email.";[/PHP]
Instead of echoing that, I want to redirect the user to a thank you page.
Any ideas? Help is greatly appreciated.
After my insert statement, I have the following code:
[PHP]if(!$insert){
die("There's little problem: ".mysql_error() );
}
echo "Thank you for registering. Please check your inbox for your registration confirmation email.";[/PHP]
Instead of echoing that, I want to redirect the user to a thank you page.
Any ideas? Help is greatly appreciated.
Comment