I have the below code to output the lastest news...
<?php
do {
printf ("
<tr><td>%s %s</td></tr>
<tr><td><font size=4>%s</font></td></tr>\n",
$myrow["date"], $myrow["user"], $myrow["news"]);
} while ($myrow = mysql_fetch_array($result));
echo "</table>\n";
?>
While this is all well and good, it just puts the news in the format
Name Date
News here
Name Date
News here
... and so on ...
Is there any way to put a break between each of the items? I can't seem to find a command similar to \n to do it.
I tried ?> <br> <?php but that doesn't work.
Thats for any help.