Code Snippet > PHP
Get users' IP Address with PHP
Get the real ip address even when they are using Proxy.
PHP
function getRealIpAddr()
{
if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check ip is pass from proxy
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}
return $ip;
}
Source: http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html
Leave a comment
Have something to say? Drop a comment! No HTML tags are allowed in the comment textfield.





















1 comment