Che cosa ti restituisce questo codice?
Codice PHP:
<pre>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$host = 'www.ggggolllleeee.it';
var_dump(gethostbyname($host));
$fp = fsockopen ($host, 80, $errno, $errstr, 30);
var_dump($fp);
?>
</pre>