我正在尝试在我的网站上实施谷歌新的'NoCaptcha'。到目前为止,我的小部件看起来很好,但它没有在我的PHP页面上验证。
我的代码设置如下:
在<head>
<script src='https://www.google.com/recaptcha/api.js'></script>
客户端:
<form id="contactform" action="bookingverify.php" method="POST">
<input type="text" name="name" size="41">
<!--OTHER FORM INPUTS-->
<div class="g-recaptcha" data-sitekey="mypublickey"></div>
</form>
服务器端(bookingverify.php)
$captcha;
if(isset($_POST['g-recaptcha-response'])){
$captcha=$_POST['g-recaptcha-response'];
}
if(!$captcha){
echo '<h2>Please check the the captcha form.</h2>';
exit;
}
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=myprivatekey&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
if($response.success==false){
echo '<h2>You are spammer</h2>';
}
else{
//SEND MAIL
}
我尝试回复$_POST['g-recaptcha-response']
,但它似乎是空的。这就像变量没有发布到php。
有谁知道我在这里做错了什么?
答案 0 :(得分:2)
您的代码在我的测试服务器上运行时使用我自己的私钥/公钥。这似乎微不足道,但我唯一需要补充的是 - 你在其他表单输入中有一个提交按钮吗?这就是将数据实际发布到PHP脚本的内容。
<input type="submit">
</form>
否则,请将var_dump($_POST['g-recaptcha-response']);
添加到您的bookingverify.php并查看其输出内容。
答案 1 :(得分:1)
好的我不知道为什么但是我在第二个IF语句中删除了exit;
并且它有效。怪异。
答案 2 :(得分:-2)