I am getting "PHP Fatal error: Call to undefined function http_get()"
Why is PHP not recognizing http_get();
<?php
$response = http_get("https://www.google.com/recaptcha/api/siteverify?", array(
'headers' => array(
'Accept' => 'application/json'
)
), $info);
print_r($info);
?>