How can I retrieve data from the database by querying records between two dates using CodeIgniter\'s activerecord?
Try This:
$this->db->where('sell_date BETWEEN "'. date('Y-m-d', strtotime($start_date)). '" and "'. date('Y-m-d', strtotime($end_date)).'"');
Hope this will work