一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

smarty html_options 设置默认select 选值

时间:2009-12-01 编辑:简简单单 来源:一聚教程网

smarty html_options 设置默认select 选值


index.php:

require('Smarty.php.class');
$smarty = new Smarty;
$smarty->assign('cust_options', array(
   1001 => 'Joe Schmoe',
   1002 => 'Jack Smith',
   1003 => 'Jane Johnson',
   1004 => 'Charlie Brown'));
$smarty->assign('customer_id', 1001);
$smarty->display('index.tpl');

index.tpl:


OUTPUT: (both examples)

热门栏目