Recoge el NAME del SELECT que le envías por POST/GET al controlador y luego recorrelo generando un:
Código PHP:
Ver original$Select = $this->input->post('select[]');
$Cont = 0;
foreach ($Select as $Item) {
if ($Cont == 0) {
$this->db->like('category',$Item);
}else{
$this->db->or_like('category',$Item);
}
$Cont++;
}