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'] ; $month > 0 ; $month--)
{
$thing = date ("F, Y", mktime (0,0,0,$month,0,$today['year'],0);
echo '' . $thing;
}
}
}
?>