We can get the Internet Protocol (IP) address of any visitor by using PHP. Finding the IP address is very important requirement for many scripts where we store the members or visitors details. For security reason we can store IP address of our visitors who are doing any purchases or doing any type of transaction online. We can using the IP address to find out geographical location of the visitor. Some time based on the IP address we can redirect the browser to different areas of the site.
<?Php
$ip=$_SERVER['REMOTE_ADDR'];
echo "IP address= $ip";
?>
The above code will display this IP address= 137.117.210.41
$ip2=$_SERVER['HTTP_X_FORWARDED_FOR'];
echo "Proxy address=$ip2";Proxy address=Not found$_SERVER['SERVER_NAME'] = www.plus2net.comYou can display all other elements of Array by using display elements of array. Here is a sample code.while (list ($key, $val) = each ($_SERVER)) {
echo "$key -> $val <br> ";
}
So your IP address keep changing from time to time
It is like using a hired vehicle each day. Your cab operator will give you a vehicle each time you ask with a different number plate.
cache:www.plus2net.com/php_tutorial/php_ip.php
scroll down and see the IP address of google bot.
| John | 15-06-2009 |
| I need a script similar to that of the one at tracemyip.com | |
| anto | 17-06-2009 |
| nice.. can you show how to get the full details for the network addressed including the gateway and sub-net mask? thank you | |
| Spirit | 20-06-2009 |
| You cannot find out somone's subnet mask, or gateway externally. Both are part of their internal network, all of which shares the same external IP. | |
| Myles | 13-07-2009 |
| To John - Thanks for that info, now go and make it. Anto, type ipconfig in msdos or as is probably more apt.....winipcfg in START then RUN. | |
| ajay joshi | 19-09-2009 |
| thanx.. can you show how to get the full details for ip tracing/ip trapping | |
| CanadaWest | 21-09-2009 |
| You say, "recording the geographical location of the visitor can be done this way" How can I get the user's geographical location to redirect the user to the correct info for their region? | |
| smo | 21-09-2009 |
| Once IP address is known then the location can be collected by using available geo location tables. These tables are available at cost and can be updated regularly. | |
| gizmo | 28-11-2009 |
| can you show how to get the full details for the network addressed | |
| santosh | 30-12-2009 |
| how to run the above code?... | |
| Pham Nguyen | 01-01-2010 |
| why do i use the code $ip=@$REMOTE_ADDR; on localhost. $ip=127.0.0.1. Please lest me know how about on the host server? | |
| Krishnat | 31-01-2010 |
| i want to design cyberoam through php..so please tell me some guideline | |
| PHP Developer | 18-03-2010 |
| Looking to find out how to look up who owns the IP and what the IP owner's address is. Thanks! | |
| kiran malvi | 15-04-2010 |
| This ip function are most usefull for anyone. so thanks. | |
| Mahendra Rajgude | 07-07-2010 |
| Really useful info. Thanks. | |
| Mutahir shah | 22-10-2010 |
| Please someone could provide me how to conver IP address to address where the user is loged in. | |
| John | 11-01-2011 |
| Thanks ....it worked. | |
| Michael | 11-02-2011 |
| I have 14 tracts that I want the visitors to my website to be able to send to their friends. Please can you let me have a script attached to be bottom of the page telling visitors to send to their friends. | |
| sparky | 23-08-2012 |
| I am trying to determine where to place this piece of code in my .php file. The page has html and php code inside of it. I would like to track IP addresses and have them stored to my .csv file, which I already have working with fwrite. | |
| Hitender | 05-12-2012 |
| how to fetch the ip address of user filling a form in php sites? I want the exact coding please let me know about this.... | |
| HridoY636 | 03-04-2013 |
| Why those code shows different ips in differnt time.. Even i am visiting this page with same network and same phone and even same browser? Plz answer me. | |
| smo1234 | 06-04-2013 |
| Your ISP assign you different IP each time you start connecting to internet. This is known as dynamic IP. In contrast if you take static IP from your ISP , they will charge more for this but you can have your own services like VOIP, web hosting etc. | |
| akhil | 22-04-2013 |
| i want to know the ip address of the computer, who chat with me from another network ? | |
| Anindya | 18-05-2013 |
| how to fetch permanent IP address of a computer..?? is it possible..?? | |
| George | 19-05-2013 |
| you can also use a ip geo-location pluggin like the one in bricksett cms. it takes users ip address and then gives you the country code. | |
| mohsen | 02-09-2013 |
| thank you... it's short and useful. | |
| FARHAN | 17-03-2015 |
| Can you help me i want full script can you send me my email address please ( thank you for helping me ) | |
| siva | 02-08-2016 |
| Hi i was using above ip program, but my result arrived this format :IP address= ::1 | |
| smo1234 | 10-09-2016 |
| If you can run PHP script , then you can run this code, there is no extra code required. | |