Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to get the location details from the users IP Address in PHP.

Any suggestions ??

Thanks

share|improve this question

4 Answers

up vote 4 down vote accepted
$ip = '98.229.152.237';
$xml = simplexml_load_file("http://ipinfodb.com/ip_query.php?ip=$ip");
print_r($xml);

Output:

SimpleXMLElement Object
(
    [Ip] => 98.229.152.237
    [Status] => OK
    [CountryCode] => US
    [CountryName] => United States
    [RegionCode] => 33
    [RegionName] => New Hampshire
    [City] => Manchester
    [ZipPostalCode] => 03103
    [Latitude] => 42.9403
    [Longitude] => -71.4435
    [Timezone] => -5
    [Gmtoffset] => -5
    [Dstoffset] => -4
)
share|improve this answer
thanks this is what i was looking for .... – Biranchi Dec 2 '09 at 7:24

You need to use some kine of Geo IP Service

One free service i found on google: geoplugin. They php snipplets to use their service: geoplugin/php

share|improve this answer

You can take a look to the maxmind database, and the GeoIP PECL extension.

In my case :

  • I've installed the extension with "pecl install geoip"
  • And I've downloaded the geolitecity database and copied it to /usr/share/GeoIP/GeoIPCity.dat so it's found by the PECL extension.

Note there should also be some PEAR package (PEAR::Net_GeoIP) to help you, if you cannot install any PECL extension.


Once you have installed both of those, you can use this kind of code :

$ip = '82.229.x.y';     // replace with your IP address
var_dump(geoip_record_by_name($ip));

And you'll get this kind of output :

array
  'continent_code' => string 'EU' (length=2)
  'country_code' => string 'FR' (length=2)
  'country_code3' => string 'FRA' (length=3)
  'country_name' => string 'France' (length=6)
  'region' => string 'B9' (length=2)
  'city' => string 'Lyon' (length=4)
  'postal_code' => string '' (length=0)
  'latitude' => float 45.75
  'longitude' => float 4.84999990463
  'dma_code' => int 0
  'area_code' => int 0

Which, in my case, is true : I am indeed in the city of Lyon, FR.

share|improve this answer

Check out the PEAR GeoIP library.

share|improve this answer
you link returns 404 – Amirshk Dec 2 '09 at 5:38
Sorry about that. The underscore got encoded. Fixed. – Daniel Schilling Dec 2 '09 at 5:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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