All I see is or_like(). Is it possible to query two different \'likes\' and both are mandatory?
or_like()
return $this->db ->select(\'product_key.cont
You can pass an array to $this->db->like()which will produce multiple ANDs:
$this->db->like()
AND
$array = array('product_key.client_name' => $filter_name, 'product_key.status' => $filter_status); $this->db->like($array);