Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
How to get users’ IP Address with PHP
Useful PHP Code Snippets for Developers - How to get users’ IP Address with PHP
✍: Guest
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;
}
2015-06-19, 1744🔥, 0💬
Popular Posts:
How to Install and Start Skype Meeting App in Google Chrome? You can follow this tutorial to install...
Why I am getting the "Account Frozen" message when login to OneDrive? If you have not used your free...
How to resume file transfer in FileZilla FTP Client? I have unfinished file transfer entries in the ...
What are Mimehandler and Plugin Processes of the Google Chrome program on Windows? Mimehandler and P...
Is Tahoma font supported on iPhone, iPad and other Apple devices? The answer is no. Tahoma font is n...