controller_get_brends.php 440 Bytes
<?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>';
    }

}
?>