how do I redirect with PHP script? How can I use a PHP script to redirect a user from the url they entered to a different web page/url?
That code doesn't work :/ header() tag doesn't work either.
if(/*do something, nevermind*/)) {
mail($to, $subject, $message, $headers);
echo "<p> Form sended </p>";
header('<meta http-equiv = "refresh" content = "0; url = https://faunaservice.pl">');
exit;
}