function
paragraphs
(
$text
)
{
$fulltext
=
''
;
$text_array
=
explode
(
"
\n
\n
"
,
$text
)
;
foreach
(
$text_array
AS
$ta
)
{
$ta
=
str_replace
(
"
\n
"
,
"<br />"
,
$ta
)
;
$fulltext
=.
"<p>"
.
$ta
.
"</p>"
;
}
return
$fulltext
;
}