website/news_funcs.php
2000-05-15 00:46:00 +00:00

9 lines
254 B
PHP

<?
function newsItem( $date, $user, $text )
{
if ($user == "Theoddone33") $user = "theoddone33";
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
' <DD>' . $text . '</DD>' .
'</DL></TD></TR>';
}
?>