In one forum i found that Geo Targeting Script would help to trace the user from different countries. What is that script? I want to use that in my site. Please give detailed explanation.
</script> <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 = "http://bing.com"; break; case (country = "IN"): window.location = "http://yahoo.com"; break; case (country = "ID"): window.location = "http://xyz.com"; break; case (country = "BD"): window.location = "http://cj.com"; break; default: window.location = "http://kingofabs.com"; break; } </script> Code (markup): put in the html file and open when user drom US = united state it will see bing.com i think u got my point