我有form google reCaptcha v2
。但是在我的代码中,当人员未检查图标I'm not a robot
时,代码会将此人发送到包含消息Please check the the captcha form
的新页面。
我需要当某人不检查图标I'm not a robot
时,他/她与消息Please check the the captcha form
保持同一页面。这是我想要的example
我有联系表格(姓名,电话和短信)
<?php
$email;$comment;$captcha;
if(isset($_POST['email'])){
$email=$_POST['email'];
}if(isset($_POST['comment'])){
$email=$_POST['comment'];
}if(isset($_POST['g-recaptcha-response'])){
$captcha=$_POST['g-recaptcha-response'];
}
if(!$captcha){
echo '<h2>Please check the the captcha form.</h2>';
exit;
}
$secretKey = "************";
$ip = $_SERVER['REMOTE_ADDR'];
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$secretKey."&response=".$captcha."&remoteip=".$ip);
$responseKeys = json_decode($response,true);
if(intval($responseKeys["success"]) !== 1) {
echo '<h2>You are spammer ! Get the @$%K out</h2>';
} else {
echo '<h2>Thanks for posting comment.</h2>';
}
你能帮帮我吗?
答案 0 :(得分:0)
我认为您应该使用#Javascript来验证客户端是否已经首先检查过您的验证码。然后发送提交表格,检查验证码。