Answer the question
In order to leave comments, you need to log in
How to pass nothing in Yii2 form?
Good day! There is a form:
<?php $form = ActiveForm::begin([
'action' => ['search'],
]) ?>
<?=$form->field($modelHouse, 'wall')->listBox(['Панель' => 'Панель', 'Кирпич' => 'Кирпич',]) ?>
<?=$form->field($modelHouse, 'city')->dropDownList(['Киев' => 'Киев', 'Винница' => 'Винница',]) ?>
<?=Html::submitButton('Искать!') ?>
<?php ActiveForm::end() ?>
House::find()->filterWhere(['wall' => $modelHouse->wall, 'city' => $modelHouse->city])->asArray()->all();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question