我在提交表单后尝试重定向用户。我目前正在使用标题("位置:http://www.google.com")作为测试,但在提交后它会保留在我的网站上。
我做错了什么?
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$from = 'From: Website';
$to = 'contact@joakimsorensen.se';
$subject = 'Hello';
$human = $_POST['human'];
$body = "From: $name\n E-Mail: $email\n Message:\n $message";
if ($_POST['submit'] && $human == '4') {
if (mail ($to, $subject, $body, $from)) {
header("Location: http://www.google.com");
echo 'great';
} else {
echo '<span style="color:red"><p>Something went wrong, go back and try again!</p></span>';
}
} else if ($_POST['submit'] && $human != '4') {
echo '<span style="color:red"><p>You answered the anti-spam question incorrectly!</p></span>';
}
?>
它只是打印出来&#34;伟大的&#34;来自回声。
答案 0 :(得分:-1)
我认为问题是标头已经发送了。尝试使用
?>
<script type="text/javascript">
window.location="http://www.google.com";
</script>
<?php
而不是
header("Location: http://www.google.com");