Dropdown select list in CakePHP

前端 未结 10 968
一个人的身影
一个人的身影 2020-12-15 11:59

Does anybody know how to select the contents of one take from a different view in CakePHP?

I have a take itemgroups that has 2 fields ID an

10条回答
  •  死守一世寂寞
    2020-12-15 12:34

    Here is the code to display a select dropdown.

    input('inputname', array('type'=>'select', 'options'=>$cate, 'label'=>false, 'empty'=>'Category')); ?>
    

    where $cate is loaded with an array from a find('list') in the format

    array(0 => 'option1', 1=>'option2', etc etc etc

提交回复
热议问题