Possible Duplicate:
how to find the dates between two dates specified
I want to get todays date and the following 6 days. I wish to display it as an html list. So say today date is the 1st October I would like to return.
<ul>
<li>01/10/2011</li>
<li>02/10/2011</li>
<li>03/10/2011</li>
<li>04/10/2011</li>
<li>05/10/2011</li>
<li>06/10/2011</li>
<li>07/10/2011</li>
</ul>