country - Magento - Dropdown box -
does know how dropdown box one? i'm trying list of countries separate delivery prices. p.s. trying put on cms page.
you can create drop down in front end below
<?php $_countries = mage::getresourcemodel('directory/country_collection')                                     ->loaddata()                                     ->tooptionarray(false) ?> <?php if (count($_countries) > 0): ?>     <select name="country" id="country">         <option value="">-- please select --</option>         <?php foreach($_countries $_country): ?>             <option value="<?php echo $_country['value'] ?>">                 <?php echo $_country['label'] ?>             </option>         <?php endforeach; ?>     </select> <?php endif; ?> and admin view
<?php      $fieldset->addfield('country', 'select', array(         'name'  => 'country',         'label'     => 'country',         'values'    => mage::getmodel('adminhtml/system_config_source_country')->tooptionarray(),      ));  ?> hope sure you
Comments
Post a Comment