Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I use bbCode function to enable text formatting on my website. The problem is that I get problems with newline. Sometimes it creates
HTML
<p></p>
without reason, and sometimes I dont get any newlines at all...
To much newline: http://checkoff.org/index.php?page=articles&action=view_article&article_id=8[^]

No newline: http://checkoff.org/index.php?page=articles&action=view_article&article_id=6[^]

This is my code:
PHP
<?php 
$get_article_text = bbcode($get_article_text);
$get_article_text = str_replace("{linebreak}", "\n", $get_article_text);

echo"
<h1>$get_article_title</h1>

<p>$get_article_text</p>
";
?>


And my bbCode function:
http://pastebin.com/xhGKrY3f[^]
Posted
Updated 27-Apr-13 0:38am
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900