im coding a guestbook and i want new lines and spaces to be shown when i show the posts?
when i post a thread now everything is shown on one line.
help!
im coding a guestbook and i want new lines and spaces to be shown when i show the posts?
when i post a thread now everything is shown on one line.
help!
Use this function:
http://php.net/manual/en/function.nl2br.php
nl2br() will convert new lines into <br/> tags, so you will get new lines.
Use nl2br()
. Basically it's prepending every newline character with <br />
.