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

*文
發布: 2023-03-18 21:04:01
原創
1381 人瀏覽過

本文主要介紹了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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!