I get this error on one of my websites, basicaly, it's suppose to say you didn't enter the captcha correctly and display the form again in order to fill it in, although I get this error, it was working previously but now it's just not! Here is the related code:
<?php
function getTitle($link){
$str = file_get_contents($link) or die ("Error");
if(strlen($str)>0){
preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
return $title[1];
}
}
require_once('core/recaptchalib.php');
$privatekey = "---------------------------------------";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);


Sign In
Create Account


Back to top









