0
このrecaptcha v2の使用を手伝ってください。 私が問題だかわからないけど、ここで私はどんなprobleを持っていけないローカルホストでこのコードを使用していますキャプチャが正常に動作しない
if (isset($_POST['submit']))
{
if(isset($_POST['g-recaptcha-response'])){
//your site secret key
$secret = 'secrete key';
//get verify response data
$verifyResponse = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$secret.'&response='.$_POST['g-recaptcha-response']);
$responseData = json_decode($verifyResponse);
if($responseData->success){
//code here
}
else{
echo "<script>alert('Please click reCAPTCHA');</script>";
}
}
私のコードです。私はすでにGoogleのrecaptchaで私のドメインを入力して、私は唯一の問題はコードだと思う。
あなたは何を期待し、実際に何が起こったのですか? – Heikki