間違ったreCAPTCHA入力のエラーを表示する自動プロンプトボックスを作成しようとしています。現在、同じページにリンクする関数'redirect_to'があり、テキスト形式でエラーを入力する予定です。誰かがこれを手伝ってくれるなら、私は大いに感謝されるでしょう、私はjavascriptの経験があまりありません。
require_once($_SERVER['DOCUMENT_ROOT'] . '/recaptcha/recaptchalib.php');
$privatekey ="*********";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER['REMOTE_ADDR'],
$_POST['recaptcha_challenge_field'],
$_POST['recaptcha_response_field']);
$str_result = "";
if (!$resp->is_valid) {
redirect_to("login_recap.php");
// What happens when the CAPTCHA was entered incorrectly
$message = "The reCAPTCHA wasn't entered correctly. Go back and try it again. (reCAPTCHA said: " . $resp->error . ")";
echo $message;
exit();
}