-
How to Track Client IP Address Using PHP App?
over 6 years ago
-
about 5 years ago
<?php
//whether ip is from share internet
if (!empty($_SERVER['HTTP_CLIENT_IP']))
{
$ip_address = $_SERVER['HTTP_CLIENT_IP'];
}
//whether ip is from proxy
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
{
$ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
//whether ip is from remote address
else { $ip_address = $_SERVER['REMOTE_ADDR'];
}
echo $ip_address;
?> -
1 Answer(s)