0

我正在尝试使用 reCaptcha 将验证码添加到我的一个网站上的联系表单中。验证码工作正常。联系表格在没有验证码的情况下工作正常 - 但是当我添加代码来验证验证码时,它会导致问题。

它给了我以下错误信息:

警告:无法修改标头信息 - 标头已由 /home/liveoutl/domains/mydomainsample.com/public_html/ 中的(输出开始于 /home/liveoutl/domains/mydomainsample.com/public_html/bids/verify.php:1)发送第 53 行的 bids/verify.php

在我看来,标题被干扰了 - 但本身没有标题。我试图让它在提交表单时加载一个“谢谢”页面。这一直适用于联系表单处理程序脚本,但现在验证码验证脚本导致问题。

有没有更好的方法来加载感谢页面?

应注意以下几点:我对 PHP 不是很熟悉我正在使用 iframe 将“contact-form.php”嵌入到实际站点中

这是我在 verify.php 中的完整代码:

<!-- begin code for including captcha validation-->    
<?php
      require_once('recaptchalib.php');
      $privatekey = "private_key";
      $resp = recaptcha_check_answer ($privatekey,
                                    $_SERVER["REMOTE_ADDR"],
                                    $_POST["recaptcha_challenge_field"],
                                    $_POST["recaptcha_response_field"]);

      if (!$resp->is_valid) {
        // What happens when the CAPTCHA was entered incorrectly
        die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
             "(reCAPTCHA said: " . $resp->error . ")");
      } else {
        // Your code here to handle a successful verification
      }
      ?>
      <!-- from here down handles the actual processing and sending of the form-->
      <?php 
    $errors = '';
    $myemail = 'name@domain.com';//<-----Put Your email address here.
    if(empty($_POST['name'])  || 
       empty($_POST['email']) ||
       empty($_POST['phone']) ||
       empty($_POST['message']))
    {
        $errors .= "\n Error: all fields are required";
    }

    $name = $_POST['name']; 
    $email_address = $_POST['email']; 
    $phone_number = $_POST['phone'];
    $message = $_POST['message']; 

    if (!preg_match(
    "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i", 
    $email_address))
    {
        $errors .= "\n Error: Invalid email address";
    }

    if( empty($errors))
    {
        $to = $myemail; 
        $email_subject = "Contact form submission: $name";
        $email_body = "You have received a new message. ".
        " Here are the details:\n Name: $name \n Email: $email_address \n Phone: $phone_number \n Message \n $message"; 

        $headers = "From: $myemail\n"; 
        $headers .= "Reply-To: $email_address";

        mail($to,$email_subject,$email_body,$headers);
        //redirect to the 'thank you' page
        header('Location: contact-form-thank-you.html');
    } 
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
    <html>
    <head>
        <title>Contact form handler</title>
    </head>

    <body>
    <!-- This page is displayed only if there is some error -->
    <?php
    echo nl2br($errors);
    ?>


    </body>
    </html>
4

2 回答 2

1

您尝试发送 HTTP 标头verify.php

header('Location: contact-form-thank-you.html');

在第一行发送 HTML 注释后,被视为响应,从现在开始发送任何标题都会发出这样的警告。

如果您确实需要该评论,请将其放在标签之前<!DOCTYPE<body>标签中。

于 2012-05-17T21:41:18.117 回答
0

尝试删除评论后的空格

<!-- begin code for including captcha validation-->    
                                                   ____
                                            ^^ Spaces here ^^

如果不解决,则需要删除注释,并可以放入<?php标签内:

验证.php

<?php
// begin code for including captcha validation

[...] // Lots of code
于 2012-05-17T19:24:17.557 回答