Ideally I'm trying to put together a PHP script that I can query from any web browser and it returns the Country of the IP address that accessed the PHP script.

Is this possible or is there a better solution?

link|improve this question

1  
Obligatory note: IP-to-location is not a reliable method of source identification due to various proxies, VPNs and other horrors. According to the IP addresses, I am at this moment in Texas, Norway, Czech Republic, and Japan. – Piskvor Sep 6 '10 at 8:46
feedback

4 Answers

up vote 1 down vote accepted

I use hostip.info API. Remote requests are slow so be carefull :)

link|improve this answer
This is perfect! Saves me having to make sure my php server has the right modules and returns nice and simple country codes! Nice – Tristan Sep 6 '10 at 8:48
feedback

There are free, easy APIs you can use, like those:

Which one looks the most trustworthy is up to you :)

Otherwise, there are scripts which are based on local databases on your server. The database data needs to be updated regularly, though. Check out this one:

HTH!

Edit: And of course, depending on your project you might want to look at HTML5 Location features. You can't use them yet on the Internet Explorer (IE9 will support it, long way to go yet), but in case your audience is mainly on mobile devices or using Safari/Firefox it's definitely worth to look at it!

Once you have the coordinates, you can reverse geocode them to a country code. Again there are APIs like this one:

link|improve this answer
+1 for giving multiple options. – Jacob Robinson Feb 29 at 18:42
feedback

You can download ip-tables from MaxMind:

http://www.maxmind.com/app/geoip_country

Import the CSV to your database (make sure to create an index for ip_long_from + ip_long_to). Then you can simply do:

$iplong = ip2long($_SERVER['REMOTE_ADDR']);

// should use mysqli with prepared statements etc, but just an example
mysql_query("
    SELECT country
    FROM ip_table
    WHERE $iplong BETWEEN ip_long_from AND ip_long_to
    LIMIT 1
");
link|improve this answer
This, it's an excellent way to get the country from an IP address. – Devator May 21 at 8:35
feedback

Look at the built-in GeoIP functions. http://php.net/manual/en/book.geoip.php

link|improve this answer
3  
They are not really built-in. php.net/manual/en/geoip.requirements.php – Pekka Sep 6 '10 at 8:37
I stand corrected. – John Franklin Sep 6 '10 at 10:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.