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

Leave a Reply

Your email address will not be published. Required fields are marked *