タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

smartyとformに関するmasudaKのブックマーク (1)

  • Smartyで書くフォーム要素 - SystemGathering

    {html_checkboxes} チェックボックスグループを作成します。 assign('checkboxes_array', array( 1 => 'チェックボックス1', 2 => 'チェックボックス2', 3 => 'チェックボックス3', 4 => 'チェックボックス4') ); $smarty->assign('checked_id', array(1, 4)); ?> 上記データをチェックボックスに仕立てるにはテンプレートファイルでこのように書きます。 {html_checkboxes name='id' options=$checkboxes_array selected=$checked_id separator='<br />'} 出力結果 <label><input type="checkbox" name="id[]" value="1" checked="che

  • 1