Get Country name from Country Code in Magento
Use the below code to get the Country Name from Country Code in magento
$country = Mage::getModel('directory/country')->loadByCode('country_code');
$countryName = $countryModel->getName();
Cheers!
Amjath

Recent Comments