Blame view

shops/application/controllers/controller_get_brends.php 440 Bytes
8d65d0ce   andryeyev   init
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>';
      }
  
  }
  ?>