website/news_funcs.php

9 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>';
}
?>