2000-03-20 05:41:28 +00:00
|
|
|
<?
|
|
|
|
function newsItem( $date, $user, $text )
|
|
|
|
{
|
2000-05-15 00:46:00 +00:00
|
|
|
if ($user == "Theoddone33") $user = "theoddone33";
|
2000-04-27 16:29:37 +00:00
|
|
|
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
|
2000-05-15 00:50:17 +00:00
|
|
|
' <DD><P>' . $text . '</DD>' .
|
2000-05-13 22:42:02 +00:00
|
|
|
'</DL></TD></TR>';
|
2000-03-20 05:41:28 +00:00
|
|
|
}
|
2000-05-15 17:46:34 +00:00
|
|
|
|
|
|
|
function listMonths ( )
|
|
|
|
{
|
|
|
|
$startyear = 2000;
|
|
|
|
$today = getdate ();
|
2000-05-15 18:52:59 +00:00
|
|
|
while ($startyear <= $today['year'])
|
2000-05-15 17:46:34 +00:00
|
|
|
{
|
2000-05-15 18:54:02 +00:00
|
|
|
for ($month = $today['mon']+1 ; $month > 1 ; $month--)
|
2000-05-15 17:46:34 +00:00
|
|
|
{
|
2000-05-15 19:06:57 +00:00
|
|
|
echo '<P><A HREF="test2.php?mon=' .
|
|
|
|
date ("n", mktime (0,0,0,$month,0,0,0)) .
|
|
|
|
'&yr=' .
|
2000-05-15 19:18:01 +00:00
|
|
|
date ("Y", mktime (0,0,0,0,0,$today['year'],0)). '">' .
|
2000-05-15 19:06:57 +00:00
|
|
|
date ("F, Y", mktime (0,0,0,$month,0,$today['year'],0)) .
|
|
|
|
'</A>';
|
2000-05-15 17:46:34 +00:00
|
|
|
}
|
2000-05-15 18:52:59 +00:00
|
|
|
$today['year']--;
|
2000-05-15 17:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
2000-03-20 05:41:28 +00:00
|
|
|
?>
|