Get Region name from RegionId in Magento

Use the below code to get the Region name from RegionId in Magento in magento

$region = Mage::getModel('directory/region')->load('region_id');
$regionName = $regionModel->getName();

Cheers!
Amjath

Leave a Reply

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