Know IP
Posted: Fri Feb 02, 2007 9:18 am
How can i get the IP of a user that is entering my url?
With the best regards
Hugo Gomes
With the best regards
Hugo Gomes
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$ip =$_SERVER['REMOTE_ADDR'];Code: Select all
echo "<pre>";
print_r($GLOBALS);
echo "</pre>";Code: Select all
echo "<pre>";
print_r($_SERVER);
echo "</pre>";