How can I retrieve data from the database by querying records between two dates using CodeIgniter\'s activerecord?
Just simply write BETWEEN '{$startDate}' AND '{$endDate}' in where condition as
->where("date BETWEEN '{$startDate}' AND '{$endDate}'")