|
Your code is not secure by the way. It may cause you issues. People could use your email script to spam others using your server. Your have to filter your POST variables
Here is what you are looking for:
if($send === TRUE)
{header("Location: http://www.mydomain.com/thanks.html");
exit();
}
|