website/news_funcs.php

9 lines
203 B
PHP

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