◇复选框
◇在.html文件中的复选框代码为:
{html_checkboxes name="hobby" options=$outval selected=$a separator="<br/>"}
◇在.php文件中的代码为:
1 include_once "./libs/Smarty.class.php"; 2 $smarty = new Smarty; 3 $arr=array('a'=>'篮球','b'=>'足球','c'=>'羽毛球','d'=>'乒乓球'); 4 $smarty -> assign('outval',$arr); 5 $smarty -> assign('a','a'); 6 $smarty -> display('004.html');
◇注options代表了关联变量和值变量,selected是已选中的项,separator是每一项中间的分割值。
◇下拉列表
◇下拉列表和复选框的原理是一样的,没有什么差别,代码如下:
城市:{html_options name="city" options=$area}