0

I am 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!

Ian
  • 391
  • 1
  • 17
fayer
  • 17
  • 6

2 Answers2

3

Use nl2br(). Basically it's prepending every newline character with <br />.

Tatu Ulmanen
  • 123,288
  • 34
  • 187
  • 185
2

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.

Alexandru Luchian
  • 2,760
  • 3
  • 29
  • 41