function select_in($arr)
{
$this->db->select('*');
$this->db->from('table');
$this->db->where($arr); // change here
$query = $this->db->get();
return $query;
}
Jeśli chcesz mieć kilka In, musisz napisać to dwukrotnie.... Nie jest to możliwe w pojedynczej instrukcji.
$this->db->where_in('field1',$cond1);
$this->db->where_in('field2' , $cond2);
Uwaga:Where_in jest podobne do where id IN (1,2,3...), ale w twoim przypadku robisz wiele warunków where.