1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php class Controller_Get_Brends extends Controller { function __construct() { $this->model = new Model_Get_Brends(); } function action_index() { $data = $this->model->get_brends($_POST['city']); echo '<select id="brends_select">'; echo '<option value="">Бренд</option>'; foreach($data as $row){ echo '<option value="'.$row['brend_id'].'">'.$row['brend'].'</option>'; } echo '</select>'; } } ?>