website/news_funcs.php

10 lines
254 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>' .
2000-05-13 22:42:02 +00:00
' <DD>' . $text . '</DD>' .
'</DL></TD></TR>';
2000-03-20 05:41:28 +00:00
}
?>