Magento 1.9 – Add Multi-Select Dropdown and Comma Separated Field in Admin Panel

drop-downsmagento-1.9multiselect-attribute

I am new to magento, I have to add multi select drop down and a comma separated field to magento admin panel using phtml file, can any one guide me for this. thanks…

Best Answer

you can add comma separated in option it like below

<?php    $values='a,b,c,d,e';
    $array=explode(',',$values);
    ?>

 <select multiple name="option[]"> <?php foreach($array as $value)
{  ?>
  <option value="<?php echo $value ?>"><?php echo $value ?></option>
<?php } ?> 

</select> 
Related Topic