How Do I Display the ISP Hostname of the Visitor?

can you mention which idea you used in case somebody might visit this page again to find the answer??

Thank You Very Much Drzoid!!

No problem :slight_smile:

What do you mean? I really don’t understand…

Guys let’s join the chat on my website…
Go here…Chat

and select “General Chat”

See you there guys!

how did you manage to show that ISP host name
did you use $host = gethostbyaddr($_SERVER[‘REMOTE_ADDR’]); (this is what i think you used but its good if you mention it so anybody visiting this thread in future, would know how did you actually solved your problem)

This is exactly what I used:

<?php
$host = gethostbyaddr($_SERVER[‘REMOTE_ADDR’]);
echo $host;
?>

So everybody knows the answer to this now!