Get Smarty

Donate

Donate Bitcoin Bitcoin
Paypal

Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Buy cheap eyeglasses from Cheapglasses123.com and save up to 80%.

Buy prescription glasses from www.australiaglasses.com and save.

Cheap Glasses Now On Sale at GlassesPeople.com. Starts At $7.95.

Where to buy discount wedding dresses and cheap smart dresses free shipping - Weddingdresstrend.com

Brautkleider auf Topwedding.de

Find free files to download on allwhatyouwant.net

Looking For Affordable Wedding Dresses 2015 at Best Prices On TDBridal.com

Shop high quality cheap prom dresses on Dresswe.co.uk

Buy New Arrival Cheap Prom Dresses 2015 at JDBRIDAL Prom Dress Store

Advertisement

{html_options}

{html_options}鏄竴涓鑷畾涔夊嚱鏁锛 鍙互浣跨敤鎻愪緵鐨勬暟鎹紝鐢熸垚HTML鐨<select><option>鏍囩锛岃繕鍙互璁剧疆閫変腑椤圭瓑灞炴с

鍙傛暟鍚嶇О 绫诲瀷 蹇呴夊弬鏁 榛樿鍊 璇存槑
values array Yes, 闄ら潪浣跨敤 options 灞炴 n/a 涓嬫媺妗嗗肩殑鏁扮粍
output array Yes, 闄ら潪浣跨敤 options 灞炴 n/a 涓嬫媺妗嗘樉绀虹殑鏁扮粍
selected string/array No empty 閫変腑鐨勯」
options 鏁扮粍 Yes, 闄ら潪浣跨敤 values 鍜 output n/a 閿煎鐨勬暟缁勶紝鐢ㄤ簬涓嬫媺妗
name string No empty select缁勭殑鍚嶇О
  • 蹇呰鐨勫睘鎬ф槸valuesoutput, 闄ら潪浣犱娇鐢ㄧ粍鍚堢殑options鏉ヤ唬鏇裤

  • 闄ら潪鎻愪緵浜嗗彲閫夊睘鎬name锛 鎵嶄細鍒涘缓 <select></select>鏍囩锛 涓嶇劧锛屽彧浼氱敓鎴<option>鍒楄〃銆

  • 濡傛灉璁剧疆鐨勫兼槸鏁扮粍锛屼細褰撲綔HTML鐨<optgroup>锛屽苟涓旀樉绀鸿涓嬫媺缁勩 <optgroup>鏄敮鎸侀掑綊鐨勩

  • 鍏朵粬涓嶅湪涓婇潰鍒楄〃涓殑閿煎鍙傛暟锛屼細鐩存帴鍦ㄨ緭鍑虹殑 <select> 鏍囩涓樉绀烘垚 鍚嶇О=鍊 鐨勫睘鎬с 濡傛灉鍙夊弬鏁name娌℃湁璁剧疆锛岄偅涔堝畠浠皢琚拷鐣ャ

  • 鍏ㄩ儴鐨勮緭鍑洪兘绗﹀悎XHTML鐨勩

Example聽8.9.聽浣跨敤options灞炴


<?php
$smarty->assign('myOptions', array(
                                1800 => 'Joe Schmoe',
                                9904 => 'Jack Smith',
                                2003 => 'Charlie Brown')
                                );
$smarty->assign('mySelect', 9904);
?>

  

涓嬮潰妯℃澘灏嗙敓鎴愪竴涓笅鎷夊垪琛ㄣ 娉ㄦ剰name鎻愪緵浜嗗硷紝鎵浠ヤ細鐢熸垚 <select>鏍囩銆


{html_options name=foo options=$myOptions selected=$mySelect}

  

杈撳嚭锛


<select name="foo">
<option value="1800">Joe Schmoe</option>
<option value="9904" selected="selected">Jack Smith</option>
<option value="2003">Charlie Brown</option>
</select>


Example聽8.10.聽鍒嗗紑璧嬪valuesouptut


<?php
$smarty->assign('cust_ids', array(56,92,13));
$smarty->assign('cust_names', array(
                              'Joe Schmoe',
                              'Jane Johnson',
                              'Charlie Brown'));
$smarty->assign('customer_id', 92);
?>

  

涓婇潰鐨勪袱涓暟缁勶紝灏嗕細濡備笅杈撳嚭HTML (娉ㄦ剰杩欓噷鏈変娇鐢ㄤ簡PHP鐨 count()鍑芥暟浣滀负淇グ鍣ㄦ潵璁$畻size鍊).


<select name="customer_id" size="{$cust_names|@count}">
   {html_options values=$cust_ids output=$cust_names selected=$customer_id}
</select>

  

杈撳嚭锛


<select name="customer_id" size="3">
    <option value="56">Joe Schmoe</option>
    <option value="92" selected="selected">Jane Johnson</option>
    <option value="13">Charlie Brown</option>
</select>


  

Example聽8.11.聽鏁版嵁搴撲緥瀛(濡 ADODB 鎴 PEAR)


<?php

$sql = 'select type_id, types from contact_types order by type';
$smarty->assign('contact_types',$db->getAssoc($sql));

$sql = 'select contact_id, name, email, contact_type_id
        from contacts where contact_id='.$contact_id;
$smarty->assign('contact',$db->getRow($sql));

?>

涓嬮潰鏄ā鏉匡紝娉ㄦ剰浣跨敤浜 truncate 淇グ鍣ㄣ


<select name="type_id">
    <option value='null'>-- none --</option>
    {html_options options=$contact_types|truncate:20 selected=$contact.type_id}
</select>

  

Example聽8.12.聽<optgroup> 涓嬫媺缁


<?php
$arr['Sport'] = array(6 => 'Golf', 9 => 'Cricket',7 => 'Swim');
$arr['Rest']  = array(3 => 'Sauna',1 => 'Massage');
$smarty->assign('lookups', $arr);
$smarty->assign('fav', 7);
?>

  

鑰屾ā鏉块噷锛


{html_options name=foo options=$lookups selected=$fav}

  

杈撳嚭锛


<select name="foo">
<optgroup label="Sport">
<option value="6">Golf</option>
<option value="9">Cricket</option>
<option value="7" selected="selected">Swim</option>
</optgroup>
<optgroup label="Rest">
<option value="3">Sauna</option>
<option value="1">Massage</option>
</optgroup>
</select>


鍙傝 {html_checkboxes}{html_radios}

Comments
No comments for this page.
Post a Comment
All comments are moderated. Support questions are ignored, use the forums instead.
Author:
Email: (not shown)
What is 18 plus 1? (Are you human?)

Advertisement