Answers for "how to create select option in smarty"

PHP
0

how to create select option in smarty

<?php
$smarty->assign('cust_ids', array(56,92,13));
$smarty->assign('cust_names', array(
                              'Joe Schmoe',
                              'Jane Johnson',
                              'Charlie Brown'));
$smarty->assign('customer_id', 92);
?>
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language