I was wondering how to have the first condition constant and only the two bottom conditions as or in codeigniter. It seems to ignore the first condition when the or_where condition is there. How can I specify only the or to apply to the "where private"?
$this->db->where_in('user_id', $followers);
$this->db->where("private", "no");
$this->db->or_where("private", "yes");
Thanks