Can someone help me make this request using the Codeigniter Active entry ?:
I have an int array with two values:
$prices = array( [0] => 23, [1] => 98 ); how i can make something like : return $this->db->query("select * from product where price IN (?)", array(implode(',',$prices))->result();
Any help please.
source share