0

Codeigniterプロジェクト用にreCaptchaをセットアップしようとしています。recaptchalib.phpファイルはviewsフォルダーに保存されます。

私の登録ビューページには次のものが含まれています。

<form method="post" action="cyoa/verify.php">
<?php
require_once('recaptchalib.php');
$publickey = "correct_public_key_inserted_here";
echo recaptcha_get_html($publickey);
?>
<input type="submit" />
</form>

私のcyoaコントローラーには次の検証機能が含まれています。

public function verify()
{
    require_once('views/recaptchalib.php');
    $privatekey = "correct_private_key_inserted_here";
    $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 {
        redirect('cyoa/index');
    // Your code here to handle a successful verification
    }
}

私が抱えている問題は、ページが常にcyoa/indexにリダイレクトされることです。私は何が間違っているのですか?

4

0 に答える 0