Thread
:
What is the code for displaying a visitors host
View Single Post
03-17-2004, 07:18 PM
AcidMax
Confirmed User
Join Date: May 2002
Location: MI
Posts: 1,827
PHP Code:
<?php
$hostname
=
gethostbyaddr
(
$_SERVER
[
'REMOTE_ADDR'
]);
echo
$hostname
;
?>
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
echo $hostname;
(because the php quoting stuff looks really small.)
__________________
Latest MMA news.
http://www.mmawrapup.com
AcidMax
View Public Profile
Find More Posts by AcidMax