function newsItem( $date, $user, $text )
{
if ($user == "Theoddone33") $user = "theoddone33";
echo '
- Posted on ' . $date . ' by ' . $user . '
' .
' ' . $text . ' ' .
'
|
';
}
function listMonths ( )
{
$startyear = 2000;
$today = getdate ();
while ($startyear <= $today['year'])
{
for ($month = $today['mon']+1 ; $month > 1 ; $month--)
{
echo '' .
date ("F, Y", mktime (0,0,0,$month,0,$today['year'],0)) .
'';
}
$today['year']--;
}
}
?>