DropDownList yii 2.0 example
问题 I am using yii 2.0 Framework. How i can make options from my database. I found this, but it's yii 1.1: <?php echo CHtml::dropDownList('listname', $select, array('M' => 'Male', 'F' => 'Female')); I want to pass it to form: <?php $form->dropDownList() ?> How i can fill my dropdownlist from my database table? 回答1: Use yii\helpers\Html it contains Html::dropDownList() . echo Html::dropDownList('listname', $select, ['M'=>'Male', 'F'=>'Female']); Check Yii Framework 2.0 API Controller public