> Can anyone help me?
Paragraphs are HTML tags. You need to store the text in the
DB as HTML.
Of course, to do that, you need to create HTML to put into
the database.
The typical way is to use a 'textarea WYSIWYG editor
replacement' like
Xstandard or TinyMCE.
This allows you to make HTML that can be saved in the DB.
Otherwise, if the ONLY html you need is P tags, you could
take the text out
of the DB and manually go through the text replacing each
double line-return
with </p><p> and then dumping the whole thing in
between a set pf <p></p>
tags.
-Darrel