index of
/
home1
/
trainin6
/
public_html
/
anauthenticvillagefarm.in
/
File: /home1/trainin6/public_html/anauthenticvillagefarm.in/recaptcha_verification.php
<?php function verify_captcha($gcaptcha) { $secrect = '6LeNc5wiAAAAABILXBKUE7Mdx3e6GnFumEvaQuwc'; $ip = $_SERVER['REMOTE_ADDR']; $url = 'https://www.google.com/recaptcha/api/siteverify?secret=' . urlencode($secrect) . '&response=' . urlencode($gcaptcha) . '&remoteip=' . $ip; $api_content = file_get_contents($url); $api_response = json_decode($api_content); if ($api_response->success == true) { return true; } else { return false; } }