website/news_funcs.php

29 lines
709 B
PHP
Raw Normal View History

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";
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
' <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=' .
2000-05-15 19:33:18 +00:00
date ("n", mktime (0,0,0,$month,0,0,0)) .
2000-05-15 19:06:57 +00:00
'&yr=' .
2000-05-15 19:18:58 +00:00
date ("Y", mktime (0,0,0,0,0,$today['year']+1,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
?>