How can I retrieve data from the database by querying records between two dates using CodeIgniter\'s activerecord?
This worked for me:
$this->db->where('RecordDate >=', '2018-08-17 00:00:00'); $this->db->where('RecordDate <=', '2018-10-04 05:32:56');