I am using the following code with the IPv4 database, however I am noticing a number of IP addresses coming with the wrong country code.
Is there a updated binary GeoIP database for IPv4?
Looking at http://maxmind.com/download/geoip/database/ it appears there are only updates for IPv6.
include("geoip.inc");
$gi = geoip_open("/usr/local/share/GeoIP/GeoIP.dat",GEOIP_STANDARD);
echo geoip_country_code_by_addr($gi, "24.24.24.24") . "\t" .
geoip_country_name_by_addr($gi, "24.24.24.24") . "
";
echo geoip_country_code_by_addr($gi, "80.24.24.24") . "\t" .
geoip_country_name_by_addr($gi, "80.24.24.24") . "
";