首頁  >  文章  >  後端開發  >  Smarty如何產生簡單的表單元素

Smarty如何產生簡單的表單元素

*文
*文原創
2018-01-02 09:55:571377瀏覽

本文主要介紹了Smarty簡單產生表單元素的方法,涉及Smarty範本檔案操作的相關技巧,需要的朋友可以參考下。希望對大家有幫助。

具體如下:

smarty產生表單元素功能實現的原理是:給smarty一個數組,用於產生和顯示選單或選項,另外在傳遞一個選項的值,用於默認選擇的符合:

範例如下:

##php檔案:index.php

<?php 
include("smarty_inc.php");
$smarty->assign(&#39;cust_ids&#39;,array(1000,1001,1002,1003));
$smarty->assign(&#39;cust_names&#39;,array(&#39;丁庆&#39;,&#39;闫磊&#39;,&#39;吕东&#39;,&#39;宋子健&#39;));
$smarty->assign(&#39;customer_id&#39;,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 }>

相關推薦:

Smarty模板引擎視訊教學的資料課程推薦

##php內建函數如何在smarty中呼叫的實例分享

php smarty模版運算子有哪些?操作符怎麼使用? #

以上是Smarty如何產生簡單的表單元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn