Ciao,
gethostbyaddr funziona? Io sto usando il seguente script:
$IP= $_SERVER['REMOTE_ADDR'];
$hostname = gethostbyaddr($_SERVER["REMOTE_ADDR"]);
$AGENT= $_SERVER['HTTP_USER_AGENT'];
$message .= "\nRemote address: $IP";
$message .= "\nRemote host: $hostname";
$message .= "\nRemote user agent: $AGENT";
ma ho ottenuto questo:
Remote address: 62.152.96.114
Remote host: ()
Remote user agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
cioè non riesco ad ottenere l'host dal numero IP.
C'e' qualche soluzione per ottenere il nome?
Grazie!
Fabio