Display days between two dates
I have two variables $startDate and $endDate and I would like to display days in between the two variables. For exemple: $startDate=("09/05/2011"); $endDate=("13/06/2011");
and echo all days in between both dates in a manner to obtain something like this:
Day1 10/06/2011 // day/month/year
Day2 11/06/2011
Day3 12/06/2011
Any help will be appreciated.
Thank you in advance
|