need help to add code in php file

A

Anonymous

Guest
Hi coders

tell me how can i get name of visitors pc's computer name like defualut is "localhost"

i know that how to get ip address but dont know how to computer name

but i found that some sites are doing that

cheers

waiting for reply
 
PHP:
<?
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
 print $hostname;
?>
:roll:
 
Connected Via: 1.1 jaguar (Jaguar/3.0-70)
Your System is: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Your IP is: 202.179.137.14
this one you are talking about

you better read about $_SERVER[''] from php site :arrow:
 
Back
Top