|
Posted by Martin Magnusson on 07/13/05 11:54
I'm trying to "html-ise" some text, where an empty line should be
interpreted as a paragraph break.
I thought that
$text = str_replace("\n\n", "</p><p>", $text);
would work, but that doesn't find anything to replace in my strings, and
$text = str_replace("\n", "</p><p>", $text);
gives me too many paragraphs, of course.
As an example of what I want, this message should be divided into three
paragraphs.
[Back to original message]
|