website/news_funcs.php
2000-03-20 05:41:28 +00:00

8 lines
182 B
PHP

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