recaptcha
recaptcha copied to clipboard
White page
Hi
In my file where i have the capatcha i have this code, but when i use it i get a white screen. Anyone know why ? using another version of the code works but not this one i want to switch to.
define('SECRET_KEY',"KEY")
if (isset($_POST['g-recaptcha-response'])) {
require('component/recaptcha/src/autoload.php');
$recaptcha = new \ReCaptcha\ReCaptcha(SECRET_KEY);
$resp = $recaptcha->setExpectedHostname('mysite.com')
->verify($gRecaptchaResponse, $remoteIp);
if ($resp->isSuccess()) {
// Verified!
} else {
//Myerrror
}
}