Oficiální vyjádření doktora
$names = array('Frank', 'Todd', 'James'); # Data Array
$this->db->where_in('username', $names); # passing array
Zkuste to jako níže
Metoda 01 (doporučeno )
$this->db->from('search_result');
$this->db->where_in('skills',$s_id);
$query = $this->db->get();
Metoda 02
$this->db->from('search_result');
$this->db->where_in('skills',implode("','",$s_id));
$query = $this->db->get();
Co je na tomto řádku špatně
$this->db->where_in('skills','".implode("','",$s_id)."');
nezalamujte funkci s '
nebo "
citáty. Poté se uloží jako hodnota STRING do DB.
Odkazy