Как я могу перенаправить свою страницу
Привет, ребята. Как я могу перенаправить свою страницу контактной формы на домашнюю страницу? Это моя контактная форма php-кодов.
<?php include_once"connect.php"; if(empty($_POST["inputName"])||empty($_POST["inputMessage"])){ die("Please fill in this field"); } if(strlen($_POST["inputMessage"])<20 || strlen($_POST["inputName"])<3){ die("Please check contact form and try again"); } $other = 'MIME-Version: 1.0'."\r\n"; $other .= 'Content-type: text/html; charset=iso-8859-9'."\r\n"; $name = @mysql_real_escape_string(strip_tags(trim($_POST['inputName']))); $email = @mysql_real_escape_string(strip_tags(trim($_POST['inputEmail']))); $subject = @mysql_real_escape_string(strip_tags(trim($_POST['sub']))); $message = @mysql_real_escape_string(strip_tags(trim($_POST['inputMessage']))); $who = "example@gmail.com"; $content = "Sender: ".$name."<br> Email: ".$email."<br> Subject: ".$subject."<br> Message: ".$message; $other.= 'From: '.$email; $send = mail($who,$subject,$content,$other); if($_SERVER["HTTP_X_REQUESTED_WITH"] == "XMLHttpRequest" && $_POST){ echo "Thanks, $name we have your message and will reply soon."; }else{ echo "Something is wrong!"; } ?>
Что я уже пробовал:
заголовок ("местоположение: index.php");