i built a contact form and used header to redirect to thank you page but it is not redirecting me suddenly today, i checked the linked and even tried to put google and facebook links and all i get is "page not found"
any help?
<?php
}
else /* send the submitted data */
{
$name=$_REQUEST['name'];
$email=$_REQUEST['email'];
$message=$_REQUEST['message'];
if (($name=="")||($message==""))
{
}
else{
$from="From: $name<$email>\r\nReturn-path: $email";
$subject="הודעה מאתר blala.co.il";
mail("blalba@gmail.com", $subject, $message, $from);
header('Location: https://www.facebook.com/');
exit();
}
}
?>