Anyone using the Maxmind geoip lookup?
This thing is just returning United States for every non-US IP I throw at it.. wtf?
<?php
include_once("geoip.inc");
$open = geoip_open("GeoIP.dat", GEOIP_STANDARD);
print geoip_country_code_by_addr($open, "62.41.77.63");
geoip_close($open);
?>
Should return DE for Germany but it says US from everything..
|