I have three where conditions in my query and I want all them to merge in array only with codeigniter active record.
$this->db->where(array('id'=>5,'name'=>$name)); // I want to insert create_date >= DATE_SUB(NOW(), INTERVAL 1 MONTH) here in this where array
Please dont suggest any solution like to add this condition separately.
Thanks !
falseparameter like$this->db->where(array(...), false);? - Bora