html_checkboxes 함수
사용자 정의 함수 html_checkboxes는 지정된 데이터를 기반으로 확인 버튼 그룹을 생성합니다. 이 함수는 선택되는 요소를 지정할 수 있습니다. 대신 모든 출력은 XHTML과 호환됩니다.
test.php:
require('Smarty.class.php');$smarty = new Smarty; $ smarty->assault('cust_ids', array(1000,1001,1002,1003));$smarty->ass('cust_names', array('Joe Schmoe','Jack Smith','Jane Johnson ' ,'찰리 브라운'));
$smarty->asse('customer_id', 1001);
$smarty->display('test.html');
test.html:
{html_checkboxes 값 =$cust_ids selected=$customer_id 출력=$cust_names 구분 기호="<br />"}
출력: (두 예 모두)
eg2:
테스트 .php:
require('Smarty.class.php');$smarty = 새로운 Smarty;$smarty->할당('cust_checkboxes', array( 1000 => '조 슈모',
1001 = > '잭 스미스',
1002 => '제인 존슨',
1003 => '찰리 브라운'));
$smarty->ass('customer_id', 1001);
$smarty-> display('test.html');
test.html:
{html_checkboxes name="id" options=$cust_checkboxes selected=$customer_id Separator="<br />"}
출력 :