<?
function getCountryCode()
{
if(isset($_COOKIE["geoCode"]))
{
$countryCode = $_COOKIE["geoCode"];
}
else
{
include("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$countryCode = geoip_country_code_by_addr($gi, $_SERVER["REMOTE_ADDR"]);
geoip_close($gi);
setcookie("geoCode", $countryCode, time()+15552000, "/", ".codekodu.com", 0); //6 months cookie
}
return $countryCode;
}
//ÖRNEK :
if(getCountryCode() == "TR")
{
echo "Sitemize Hoşgeldiniz";
//türkçe sayfaya yönendirme kodları
}
else
{
echo "welcome to site";
//ingilizce sayfaya yönendirme kodları
}
?>
Geoİp:http://www.codekodu.com/GeoIP.rar

Alıntı.Biraz araştırsanız bulurdunuz