0

我是 PHP 新手。在将联系表发送到公司电子邮件后,我正在尝试重定向到感谢页面。但是,我收到一条错误消息:

Warning: Cannot modify header information - headers already sent by (output started at /home/content/86/11388686/html/contact-form-handler.php:6) in /home/content/86/11388686/html/contact-form-handler.php on line 37.

表单确实发送到电子邮件并且代码确实验证了,但重定向不起作用。就像我说的那样,这对我来说是新的,所以请非常具体地回答。谢谢

<?php
/* Set e-mail recipient */
$myemail = "tsunami.transport@aol.com";

/* Check all form inputs using check_input function */
$name = check_input($_POST['name'], "Enter your name");
$subject = check_input($_POST['subject'], "Enter a subject");
$email = check_input($_POST['email']);
$message = check_input($_POST['message'], "Write your message");

/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
/* Let's prepare the message for the e-mail */
$message = "

Name: $name
E-mail: $email
Subject: $subject

Message:
$message

";

/* Send the message using mail() function */
mail($myemail, $subject, $message);

/* Redirect visitor to the thank you page */
header('Location: http://www.tsunamitransport.com/contact-form-thank-you.html');
exit();

/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}

function show_error($myError)
{
?>
<html>
<body>

<p>Please correct the following error:</p>
<strong><?php echo $myError; ?></strong>
<p>Hit the back button and try again</p>

</body>
</html>
<?php
exit();
}
?>
4

2 回答 2

2

您偶然发现了大多数 PHP 新手要解决的第一件事,即使用 PHP 设置标头。

错误消息的原因是,为了让您在 PHP 中修改 HTTP 标头,您必须在 PHP 脚本发送任何内容(甚至是空格)到浏览器之前执行此操作。因此,在没有看到您的其余代码的情况下,我会说您尝试设置它为时已晚,已经在执行某些操作以将输出发送到浏览器。

于 2013-07-12T19:32:17.577 回答
0

这是您已经完成一些输出的行,/contact-form-handler.php:6并且您随后尝试修改标题在此行失败/contact-form-handler.php on line 37。如果您的浏览器输出at line 6是有意的,那么您将不得不构造您的代码,因为一旦有一些输出,您就无法修改标头at line 37。如果不是故意的,请检查并尝试删除该输出。

于 2013-07-12T19:57:46.237 回答