this should do it

This commit is contained in:
Dan Olson 2000-05-15 18:54:02 +00:00
parent aa6ff45f2a
commit 474ee4c853
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
$today = getdate ();
while ($startyear <= $today['year'])
{
for ($month = $today['mon'] ; $month > 1 ; $month--)
for ($month = $today['mon']+1 ; $month > 1 ; $month--)
{
echo '<P>' .
date ("F, Y", mktime (0,0,0,$month,0,$today['year'],0));