RON_ron Posted September 6, 2012 Share Posted September 6, 2012 I've got a database with a lot of ip addresses. I want to list the country names of them. I'm using the code below. $loc = file_get_contents('http://api.hostip.info/country.php?ip='.$ip); $countryName=Mage::app()->getLocale()->getCountryTranslation($loc); echo $countryName; 1. echo $loc shows the country code. But I need to echo the Country Name instead of the Country code? 2. Any better ideas to echo the country names using a list of ip addresses? Quote Link to comment https://forums.phpfreaks.com/topic/268080-mageapp-getlocale/ Share on other sites More sharing options...
jazzman1 Posted September 7, 2012 Share Posted September 7, 2012 Check this out, I've written for you - http://canada.lesno.net/info.php You can download the html adn js code if you want it and php code is: header('Content-type: text/xml'); $ip = $_SERVER['REMOTE_ADDR']; $location = "http://api.hostip.info?ip=".$ip; print file_get_contents($location); Quote Link to comment https://forums.phpfreaks.com/topic/268080-mageapp-getlocale/#findComment-1376049 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.