вот код модели:
Код: Выделить всё
public function filter_data($filter) {
$this->db->like('jenis_kegiatan',$filter);
$this->db->or_like('fungsi_bangunan',$filter);
$this->db->or_like('kecamatan',$filter);
$this->db->or_like('desa_kel',$filter);
$query = $this->db->get('permo_pdrt');
return $query->result();
}
Код: Выделить всё
public function filterkeyword() {
$filter = $this->input->post('filter');
$data['results'] = $this->model->filter_data($filter);
$this->load->view('result_view',$data);
}
Код: Выделить всё
Подробнее здесь: [url]https://stackoverflow.com/questions/45388076/filter-data-this-db-like-or-this-db-or-like-not-working-with-kecamatan-dro[/url]
Мобильная версия