i have tried this example from php.net tutorial
<?php
$response = http_get("http://www.example.com/", array("timeout"=>1), $info);
print_r($info);
?>
and i have gotten this answer from server:
Fatal error: Call to undefined function http_get() in /home/ *** .php on line 2
why doesn't...