亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

html_radios ??

? ??? ?? ?? ??? ????? ?? ??? ???? ?? ??? ? ????.

? ?? ???? ?? ?? ???? <input> ??? "??/??" ?? ??? ?????.

index.php:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->??(' cust_ids', array(1000,1001,1002,1003));
$smarty->ass('cust_names', array('Joe Schmoe','Jack Smith','Jane
Johnson','Carlie Brown') );
$smarty->ass('customer_id', 1001);
$smarty->display('index.tpl');


index.tpl:
{html_radios ?=$cust_ids ???= $customer_id ??=$cust_names ?? ??="<br />"}


index.php:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty-> ;sign('cust_radios', array(
1001 => 'Joe Schmoe',
1002 => 'Jack Smith',
1003 => 'Jane Johnson',
1004 = > '?? ???')) ;
$smarty->??('customer_id', 1001);
$smarty->display('index.tpl');


index.tpl:
{ html_radios name="id" options= $cust_radios selected=$customer_id ???="<br />"}


??: (? ? ??)
<input type="radio" name="id[ ]" value="1000"> ;? ??<br />
<input type="radio" name="id[]" value="1001" check="checked"><br />
<input type="radio " name="id[]" value="1002">?? ??<br />
<input type="radio" name="id[]" value="1003 ">?? ???<br / >

微信圖片_20180313123336.png

???? ??
||
<?php echo "html_radios函數(shù)";