Home » PHP Code »

3

This post explains about how to get real IP address using PHP code.

The code will get the real IP address

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
function getRealIpAddress()
{
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;
}
echo getRealIpAddress(); // display the real IP address
?>

it will be useful.


Related Posts

    How to create auto hyperlinks using php codeHow to get list of table names from database in mysql?Grabbing thumbnail image from youtube using php codeCopy text from remote url using php code

 

3 Comments

  1. Sumeet says:

    Its really useful

Leave a Reply