そのため、工場のテーブルで検索するための検索ボックスがあります。それは魅力のように機能しますが、私はまだ codeigniter に慣れていません。
データベース内の複数のテーブルを選択するには、select を使用する必要がありますか?
私のコントローラー機能:
function search()
{
$this->load->view('views/header');
$this->load->view('views/search');
$this->load->view('views/footer');
}
function searchresults()
{
$match = $this->input->post('search');
$data['query'] = $this->bedrijven_model->get_search($match);
$this->load->view('views/header');
$this->load->view('views/searchresults', $data);
$this->load->view('views/footer');
}
私のモデル:
function get_search($match)
{
$this->db->like('Bedrijfsnaam', $match);
$this->db->or_like('Postcode', $match);
$this->db->or_like('Plaats', $match);
$this->db->or_like('Telefoonnummer', $match);
$this->db->or_like('Email', $match);
$this->db->or_like('Website', $match);
$this->db->or_like('Profiel', $match);
$this->db->or_like('Adres', $match);
$query = $this->db->get('bedrijven');
return $query->result();
}
また、検索機能をモデルからコントローラーに入れることができるかどうかも疑問に思っています。それは、テーブルごとに新しいモデル関数を作成する必要があるからです。
前もって感謝します。