My string-filter functions puts this string
<b>enter</b>
Testing & so. "Some quote here";
into the database like this
&#60;b&#62;enter&#60;/b&#62;&#13;&#10;Testing &#38; so. \&#34;Some quote here\";
I echo it like this: stripslashes(htmlspecialchars_decode(...));
which gives me:
<b>enter</b> Testing & so. "Some quote here";
How can I echo this string WITH the new line, but without allowing it to decode all the other html entities?
I've tried html_entity_decode(), but this also makes enter bold...
Thanks!