Quote:
|
Originally Posted by u-Bob
|
Yea. Just do a country lookup using the above software and do your redirect based on that. It's as easy as something like:
Code:
include("/other/company/ip_lookup_code.php");
$country = getCountry();
switch($country)
{
case "UK":
header("Location: http://www.badteeth.com;);
break;
case "JP";
header("Location: http://www.iwannafuckahotjapanesechick.com");
break;
............
}