我正在尝试使用 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>