Maybe somebody needs that, for CPA offers - show USA only offers to USA visitors and some international offer for all the other. You place this code right below starting body tag <script language="JavaScript" src="http://j.maxmind.com/app/geoip.js"></script> HTML: and in the place where you want to show banner, put this code <script language="JavaScript"> var country_code = geoip_country_code(); if (country_code == "US"){ document.write('PUT_YOUR_USA_OFFER_HTML_HERE'); }else{ document.write('PUT_YOUR_INTERNATIONAL_OFFER_HTML_HERE'); } </script> HTML: it can detect other countries as well, but you need to replace "US" with appropriate country code. uptime for server that hosts geoip javascript code is about 99.95% so I guess it's pretty reliable
seems to be reliable, but as far as I see on their webpage, it's not free. They have a limit of 25 queries / day unless you get some kind of subscription...
can you post text where they mention that? i've put this code on one site few hours ago and had few hundred pageviews since then and it looks like it's working without any problems
try the online demo: http://www.maxmind.com/app/locate_ip?ips=90.20.30.40. maybe it's limited for the queries coming from their website...
maybe so.. i've found this code on some other site that I can't manage to find again. they didn't mention any limitations