mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
this better not have broken anything
This commit is contained in:
parent
40e982d6ad
commit
5692d047a0
1 changed files with 14 additions and 0 deletions
|
@ -6,4 +6,18 @@
|
|||
' <DD><P>' . $text . '</DD>' .
|
||||
'</DL></TD></TR>';
|
||||
}
|
||||
|
||||
function listMonths ( )
|
||||
{
|
||||
$startyear = 2000;
|
||||
$today = getdate ();
|
||||
while ($startyear <= $today['year']--)
|
||||
{
|
||||
for ($month = $today['mon'] ; $month > 0 ; $month--)
|
||||
{
|
||||
echo '<P>' .
|
||||
date ("F, Y", mktime (0,0,0,$month,0,$today['year'],0)
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue