Sujit Kumar Shah
Freelance PHP MySql programmer
Getting real IP address in PHP
Generally you have use $_SERVER['REMOTE_ADDR'] to find out the client’s IP address in PHP. But it may not return the true IP address of the client at all time. If your client is connect to the Internet through Proxy Server then $_SERVER['REMOTE_ADDR'] in PHP just returns the IP address of the Proxy Server not of the client’s machine. So here is a simple function in PHP to find out the real IP address of the client’s machine. There are extra Server variable which might be available to determine the exact IP address of the client’s machine in PHP, they are HTTP_CLIENT_IP and HTTP_X_FORWARDED_FOR.
Simple function to find real IP address in PHP
function get_real_ip_addr()
{
if(!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
else if(!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;
}
Here above function return true IP address of client’s machine using PHP. For this first of all check IP address of the client machine, if it is false then it will check IP Address is pass from proxy, if yes then it will return otherwise it will return remote computer IP address.
Tags: IP PHP, IP address in PHP, Getting real IP address in PHP
To do articles more effectively, we need your comments or suggestions on how to improve the articles and make it more useful, or what other articles you would like in the future. Please CLICK HERE and leave your feedback. Thanks!!!
- Simple JQuery Accordion menu
- Ajax autocomplete using PHP & MySQL
- XML Web Service using PHP and SOAP
- Reduce High CPU usage overload problem caused by MySql
- Pure CSS Bubble Tooltips
- How to make your website load fast?
- How To Enable JavaScript in a Web Browser?
- Getting real IP address in PHP
- Basic security vulnerabilities in php code
- Beginning Search engine optimization (SEO)
Categories
Archives
Website Services
- » Web 2.0 Website Design
- » Online Shopping (E-commerce)
- » Content Management System
- » Small/Advanced Business Sites
- » Search Engine Optimization
- » Website Maintenance Services
- » Web and Enterprise Portal Development
- » Directory Website
- » Auction, Bidding Website
- » Classified, Marketplace Website
- » Web Application Development
