本文主要介紹了Smarty簡單產生表單元素的方法,涉及Smarty範本檔案操作的相關技巧,需要的朋友可以參考下。希望對大家有幫助。
具體如下:
smarty產生表單元素功能實現的原理是:給smarty一個數組,用於產生和顯示選單或選項,另外在傳遞一個選項的值,用於默認選擇的符合:
範例如下:
##php檔案:index.php<?php include("smarty_inc.php"); $smarty->assign('cust_ids',array(1000,1001,1002,1003)); $smarty->assign('cust_names',array('丁庆','闫磊','吕东','宋子健')); $smarty->assign('customer_id',1003); $smarty->display("index.html"); ?>範本檔案:index.html
<select name=customer_id onkeypress=""> <{html_options values=$cust_ids selected=$customer_id output=$cust_names}> </select> <hr /> <{html_radios name="id" values=$cust_ids selected=$customer_id output=$cust_names }>
相關推薦:
php smarty模版運算子有哪些?操作符怎麼使用? #
以上是Smarty如何產生簡單的表單元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!