<?php
$sql = mysql_query("SELECT body FROM comments");
while ($r = mysql_fetch_assoc($sql)) {
$body .= $r['body'];
}
?>
<?php echo $body ?><br />
Can someone explain why it prints out all comments without no space? It prints out all my entries but they are all together. And the <br />
only after the last comment?
Thanks!