複数の検索を追加するのは初めてです。どうすればいいのかわかりません。検索で単語ごとにループを使用する必要がありますか? または、mysql組み込み関数がありますか?
私はそれがそのようであるべきだと思いますか?
$strSearch = $this->input->post("search"); // would hold words etc hello word
$arry = explode(" ", $strSearch);
foreach($arry as $item){
$this->db->query("select * from tbl where item like '%$item%');
}
ご意見をお聞かせください。
ありがとうございました