MandatoryMagic
Registered Member
- Jul 10, 2009
- 91
- 40
Something similar to the second one in this thread http://www.blackhatworld.com/blackhat-seo/making-money/92299-simplest-geo-redirect-code.html
BUT in PHP. I'm only requesting this because many people disable javascript.
So if someone can code this up real quick or can point me in the direction of a PHP Geo Redirect that would be lovely.
Code:
<script language="JavaScript" src="http://j.maxmind.com/app/geoip.js"></script>
<script language="JavaScript">
var country = geoip_country_code();
switch (country)
{
case (country = "US"):
window.location = "YOUR US OFFER";
break;
case (country = "UK"):
window.location = "YOUR UK OFFER";
break;
default:
window.location = "YOUR INTERNATIONAL OFFER";
break;
}
</script>
BUT in PHP. I'm only requesting this because many people disable javascript.
So if someone can code this up real quick or can point me in the direction of a PHP Geo Redirect that would be lovely.