这是我第一次愿意添加多个搜索。我不确定应该怎么做。我应该在搜索中使用循环每个单词吗?还是那里有任何内置的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%');
}
请指教。
谢谢你