I'm looking for a geo targeted mobile php redirect script

elviswong

Senior Member
Joined
Nov 8, 2011
Messages
983
Reaction score
276
Guys

I'm looking for a geo targeted mobile php redirect script
If it could also take care of OS version, it would be awesome !


Thanks
 
That's very simple.

1. Download IP geo database, I believe you can find some here: http://www.maxmind.com/en/geolocation_landing if you're using PHP just check $_SERVER['REMOTE_ADDR'] against the database to get the country.

2. Extract OS from $_SERVER['USER_AGENT'] (if the OS is present)

Hope that helps
 
Back
Top