mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 23:32:38 +00:00
8 lines
203 B
PHP
8 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>';
|
|
}
|
|
?>
|