php表单提交正在工作,但正在出错,而不是重定向

php表单提交正在工作,但正在出错,而不是重定向,php,jquery,html,css,forms,Php,Jquery,Html,Css,Forms,有人能检查一下php代码并告诉我为什么会出现这个错误吗: “警告:无法修改标题信息-标题已由/home/itechcom/public_html/DesignsbyGabe.com/send_form_email.php:144)在/home/itechcom/public_html/DesignsbyGabe.com/send_form_email.php第146行发送” PHP: <?php if(isset($_POST['email'])) { // EDIT THE 2

有人能检查一下php代码并告诉我为什么会出现这个错误吗:

“警告:无法修改标题信息-标题已由/home/itechcom/public_html/DesignsbyGabe.com/send_form_email.php:144)在/home/itechcom/public_html/DesignsbyGabe.com/send_form_email.php第146行发送”

PHP:

<?php
if(isset($_POST['email'])) {

    // EDIT THE 2 LINES BELOW AS REQUIRED

    $email_to = "Jonathansumner90@gmail.com";
    $email_subject = "contact from Designs by Gabe form";

    function died($error) {

        // your error code can go here

        echo "We are very sorry, but there were error(s) found with the form you submitted. ";
        echo "These errors appear below.<br /><br />";
        echo $error."<br /><br />";
        echo "Please go back and fix these errors.<br /><br />";
        die();
    }



    // validation expected data exists

    if(!isset($_POST['first_name']) ||
        !isset($_POST['last_name']) ||
        !isset($_POST['email']) ||
        !isset($_POST['telephone']) ||
        !isset($_POST['comments'])) {

        died('We are sorry, but there appears to be a problem with the form you submitted.');       

    }

    $first_name = $_POST['first_name']; // required
    $last_name = $_POST['last_name']; // required
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // not required
    $comments = $_POST['comments']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email_from)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';

  }

    $string_exp = "/^[A-Za-z .'-]+$/";

  if(!preg_match($string_exp,$first_name)) {

    $error_message .= 'The First Name you entered does not appear to be valid.<br />';

  }

  if(!preg_match($string_exp,$last_name)) {

    $error_message .= 'The Last Name you entered does not appear to be valid.<br />';

  }

  if(strlen($comments) < 2) {

    $error_message .= 'The Comments you entered do not appear to be valid.<br />';

  }

  if(strlen($error_message) > 0) {

    died($error_message);

  }

    $email_message = "Form details below.\n\n";



    function clean_string($string) {

      $bad = array("content-type","bcc:","to:","cc:","href");

      return str_replace($bad,"",$string);

    }



    $email_message .= "First Name: ".clean_string($first_name)."\n";

    $email_message .= "Last Name: ".clean_string($last_name)."\n";

    $email_message .= "Email: ".clean_string($email_from)."\n";

    $email_message .= "Telephone: ".clean_string($telephone)."\n";

    $email_message .= "Comments: ".clean_string($comments)."\n";





// create email headers

$headers = 'From: '.$email_from."\r\n".

'Reply-To: '.$email_from."\r\n" .

'X-Mailer: PHP/' . phpversion();

@mail($email_to, $email_subject, $email_message, $headers);  

?>



<!-- include your own success html here -->
 <?php
 header("Location: thankyou.html");
 ?>




<?php

}
?>
<form action="send_form_email.php" method="post" name="contactform">



                <label for="first_name">First Name *</label>
                <input type="text" name="first_name" size="30" maxlength="50" />


                <label for="last_name">Last Name *</label>
                <input type="text" name="last_name" size="30" maxlength="50" />

                <label for="email">Email Address *</label>
                <input type="text" name="email" size="30" maxlength="80" />


                <label for="telephone">Telephone Number</label>
                <input type="text" name="telephone" size="30" maxlength="30" />

                <label for="comments">Comments *</label>
                <textarea name="comments" rows="6" cols="25"></textarea>

                <input id="submit" style="margin-right: 30px;" type="submit"     value="Submit" />

HTML:

<?php
if(isset($_POST['email'])) {

    // EDIT THE 2 LINES BELOW AS REQUIRED

    $email_to = "Jonathansumner90@gmail.com";
    $email_subject = "contact from Designs by Gabe form";

    function died($error) {

        // your error code can go here

        echo "We are very sorry, but there were error(s) found with the form you submitted. ";
        echo "These errors appear below.<br /><br />";
        echo $error."<br /><br />";
        echo "Please go back and fix these errors.<br /><br />";
        die();
    }



    // validation expected data exists

    if(!isset($_POST['first_name']) ||
        !isset($_POST['last_name']) ||
        !isset($_POST['email']) ||
        !isset($_POST['telephone']) ||
        !isset($_POST['comments'])) {

        died('We are sorry, but there appears to be a problem with the form you submitted.');       

    }

    $first_name = $_POST['first_name']; // required
    $last_name = $_POST['last_name']; // required
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // not required
    $comments = $_POST['comments']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email_from)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';

  }

    $string_exp = "/^[A-Za-z .'-]+$/";

  if(!preg_match($string_exp,$first_name)) {

    $error_message .= 'The First Name you entered does not appear to be valid.<br />';

  }

  if(!preg_match($string_exp,$last_name)) {

    $error_message .= 'The Last Name you entered does not appear to be valid.<br />';

  }

  if(strlen($comments) < 2) {

    $error_message .= 'The Comments you entered do not appear to be valid.<br />';

  }

  if(strlen($error_message) > 0) {

    died($error_message);

  }

    $email_message = "Form details below.\n\n";



    function clean_string($string) {

      $bad = array("content-type","bcc:","to:","cc:","href");

      return str_replace($bad,"",$string);

    }



    $email_message .= "First Name: ".clean_string($first_name)."\n";

    $email_message .= "Last Name: ".clean_string($last_name)."\n";

    $email_message .= "Email: ".clean_string($email_from)."\n";

    $email_message .= "Telephone: ".clean_string($telephone)."\n";

    $email_message .= "Comments: ".clean_string($comments)."\n";





// create email headers

$headers = 'From: '.$email_from."\r\n".

'Reply-To: '.$email_from."\r\n" .

'X-Mailer: PHP/' . phpversion();

@mail($email_to, $email_subject, $email_message, $headers);  

?>



<!-- include your own success html here -->
 <?php
 header("Location: thankyou.html");
 ?>




<?php

}
?>
<form action="send_form_email.php" method="post" name="contactform">



                <label for="first_name">First Name *</label>
                <input type="text" name="first_name" size="30" maxlength="50" />


                <label for="last_name">Last Name *</label>
                <input type="text" name="last_name" size="30" maxlength="50" />

                <label for="email">Email Address *</label>
                <input type="text" name="email" size="30" maxlength="80" />


                <label for="telephone">Telephone Number</label>
                <input type="text" name="telephone" size="30" maxlength="30" />

                <label for="comments">Comments *</label>
                <textarea name="comments" rows="6" cols="25"></textarea>

                <input id="submit" style="margin-right: 30px;" type="submit"     value="Submit" />

名字*
姓*
电子邮件地址*
电话号码
评论*

这个问题以前有人问过,但不是在这种情况下。这些消息通过,但不是重定向它给我一个错误。我在其他网站上使用相同的表单提交代码,效果很好

标题('location:…')后使用exit当您重定向到某个页面时

还有,
*不要打印任何先入为主的内容*

例如,您在
php
中使用
html
的注释

删除上面的行或使其成为php注释


//在此处包含您自己的成功html

将header命令放在第一个PHP标记中

@mail($email_to, $email_subject, $email_message, $headers);  
header("Location: thankyou.html");
?>
试试这个:

<?php

if(isset($_POST['email'])) {



    // EDIT THE 2 LINES BELOW AS REQUIRED

    $email_to = "Jonathansumner90@gmail.com";

    $email_subject = "contact from Designs by Gabe form";





    function died($error) {

        // your error code can go here

        echo "We are very sorry, but there were error(s) found with the form you submitted. ";

        echo "These errors appear below.<br /><br />";

        echo $error."<br /><br />";

        echo "Please go back and fix these errors.<br /><br />";

        die();

    }



    // validation expected data exists

    if(!isset($_POST['first_name']) ||

        !isset($_POST['last_name']) ||

        !isset($_POST['email']) ||

        !isset($_POST['telephone']) ||

        !isset($_POST['comments'])) {

        died('We are sorry, but there appears to be a problem with the form you submitted.');       

    }



    $first_name = $_POST['first_name']; // required

    $last_name = $_POST['last_name']; // required

    $email_from = $_POST['email']; // required

    $telephone = $_POST['telephone']; // not required

    $comments = $_POST['comments']; // required



    $error_message = "";

    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';

  if(!preg_match($email_exp,$email_from)) {

    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';

  }

    $string_exp = "/^[A-Za-z .'-]+$/";

  if(!preg_match($string_exp,$first_name)) {

    $error_message .= 'The First Name you entered does not appear to be valid.<br />';

  }

  if(!preg_match($string_exp,$last_name)) {

    $error_message .= 'The Last Name you entered does not appear to be valid.<br />';

  }

  if(strlen($comments) < 2) {

    $error_message .= 'The Comments you entered do not appear to be valid.<br />';

  }

  if(strlen($error_message) > 0) {

    died($error_message);

  }

    $email_message = "Form details below.\n\n";



    function clean_string($string) {

      $bad = array("content-type","bcc:","to:","cc:","href");

      return str_replace($bad,"",$string);

    }



    $email_message .= "First Name: ".clean_string($first_name)."\n";

    $email_message .= "Last Name: ".clean_string($last_name)."\n";

    $email_message .= "Email: ".clean_string($email_from)."\n";

    $email_message .= "Telephone: ".clean_string($telephone)."\n";

    $email_message .= "Comments: ".clean_string($comments)."\n";





// create email headers

$headers = 'From: '.$email_from."\r\n".

'Reply-To: '.$email_from."\r\n" .

'X-Mailer: PHP/' . phpversion();

@mail($email_to, $email_subject, $email_message, $headers);  
header("Location: thankyou.html");


}
?>

这是一个标题周围打开php标记前的空白问题。我必须假设是我挑剔的服务器。我听说过空白区问题,但我从未遇到过,而且我已经多次使用此表单


谢谢大家帮助我。

你做错了。您不能在输出某些内容(甚至不是空格)后设置标题。只需在顶部设置标题,就像

   <?php
     header("Location: thankyou.html");

希望这对您有所帮助

第144行??有数百个问题解释了导致错误的原因以及如何修复错误。发布前是否尝试过搜索?不要在页眉()上方添加HTML输出<代码>
是问题所在。是的,我读过其他类似的问题。他们都没有解决you.144行中标题周围的开始php标记所在位置的问题。added()是他拥有的一个函数defined@JenzDebflav我改变了我的anwer.exit不起作用…@user370610读取更新的答案。您的页面上打印了一些输出。这就是为什么会出现这种错误。尝试注释标题,然后在页面上看到一些输出。因此,在调用
header('location:…)
I删除html注释之前,请删除所有输出或处理它们。这也没用。
window.location.replace("http://example.com/thankyou.html");