mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 13:11:46 +00:00
9 lines
182 B
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>';
|
||
|
}
|
||
|
?>
|