0

3 回失敗した後、Google の reCaptcha をフォーム ログインに添付するという概念を理解するのに苦労しています。3 回挑戦した後、reCaptcha を添付するにはどうすればよいですか?

私のPHP reCaptcha:

require_once('recaptchalib.php');
$privatekey = "MyPublicKey";
$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 {
//
}

そのようなことを達成するための最良の方法は何ですか? そのためにjsを使用する必要がありますか?

どんな助けや指導も大歓迎です。

ありがとう、

4

0 に答える 0