I have used reCaptcha control. The Problem is that the Captcha is not validating itself, i have wrote a validating code i.e.,
[php]require_once(‘recaptchalib.php’);
$privatekey = “my key”;
$resp = recaptcha_check_answer ($privatekey,
$_SERVER[“REMOTE_ADDR”],
$_POST[“recaptcha_challenge_field”],
$_POST[“recaptcha_response_field”]);
if (!$resp->is_valid) {
$errCapt=‘
The CAPTCHA Code wasnot entered correctly.
’; }[/php]Even if i put the wrong code , it goes on…
Please help