$clist= array();
$collection =
Mage::getModel('directory/country')->getCollection();
foreach ($collection as $country){
$cid = $country->getId();
$cname = $country->getName();
$clist[$cid]=$cname;
}
asort($clist); // sort country list
No comments:
Post a Comment