I have two dates and I need all the dates in between these two dates in an array using Codeigniter. Thanks in advance for any help I mean it like this
$fromDate =$this->input->post('fromDate');
$toDate = $this->input->post('toDate');
$allDate = array('all the dates between these two date');