vote up 0 vote down star
<?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!

flag

1 Answer

vote up 0 vote down check

You would need to use the following to append a <br /> after each comment:

$body .= $r['body'].'<br />';
link|flag
thanks that works but i think i will have to use another approach i wanted to do this to make it easier for a designer – Jorm Aug 5 at 15:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.