MikoMak Posted August 15, 2006 Share Posted August 15, 2006 Hi all,I've got a site where I'd like to serve up ads based on the user's geographic location.I'll use $ip = $_SERVER['REMOTE_ADDR']; to detect the IP but how then do I use it, e.g. is there a database of IP to country mappings so I can extract the location and do the necessary?Any help would be greatly apprciated.Thanx,MikoMak.p.s. Nice new look to the forum. Link to comment https://forums.phpfreaks.com/topic/17613-using-ip-tracking-to-serve-up-ads/ Share on other sites More sharing options...
zq29 Posted August 15, 2006 Share Posted August 15, 2006 You'd need to sign up to a Geolocation (or GeoIP) service, Googling "GeoIP" brings up a few companies that offer this service. It's generally a paid service though. You'd either be provided with a database, or access to a webservice. Link to comment https://forums.phpfreaks.com/topic/17613-using-ip-tracking-to-serve-up-ads/#findComment-75046 Share on other sites More sharing options...
MikoMak Posted August 15, 2006 Author Share Posted August 15, 2006 Thanks for that Semi - will look it up.MikoMak Link to comment https://forums.phpfreaks.com/topic/17613-using-ip-tracking-to-serve-up-ads/#findComment-75051 Share on other sites More sharing options...
onlyican Posted August 15, 2006 Share Posted August 15, 2006 I like the word FREEhttp://ip2more.com/docs/http://www.ip2phrase.com/Also note, for getting an IP address, evan behind a proxy use$ip = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; Link to comment https://forums.phpfreaks.com/topic/17613-using-ip-tracking-to-serve-up-ads/#findComment-75052 Share on other sites More sharing options...
MikoMak Posted August 15, 2006 Author Share Posted August 15, 2006 Thanx for that onlyican - that class looks really interesting, lots of built in features.I had a quick look at the free country db available from http://www.maxmind.com/app/geoip_country with a tutorial on how to get it going here - http://www.delau.net/php/geoip.html Link to comment https://forums.phpfreaks.com/topic/17613-using-ip-tracking-to-serve-up-ads/#findComment-75097 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.