textarea multiline view on webpage

I have 2 sections on my webpage, an administrators part and a part who is visible for evreyone.
I inputput some data via the administrators area into a database with a textarea input box.
that works fine, i kan input several paragraphs (separated by return).

eg in the textarea:
line 1 (return)
line 2 (return)
(return)
line 3 (return)

in the public part is there no separation in paragraphs: it outputs as
line1 line2 line3

how can i fix that

when you retrieve the data use nl2br

example:
[php]
nl2br($rows[‘column1’])
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service