Skip to content

Instantly share code, notes, and snippets.

View victorvte's full-sized avatar

Victor De Vicente Añón victorvte

View GitHub Profile
#
# Verify captcha
$post_data = http_build_query(
array(
'secret' => CAPTCHA_SECRET,
'response' => $_POST['g-recaptcha-response'],
'remoteip' => $_SERVER['REMOTE_ADDR']
)
);
$opts = array('http' =>