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 / >