Try this:
PHP Code:
$jsstring = addcslashes(nl2br(htmlspecialchars($option)), "'\\");
Where $option is the string from the database, and $string is what you'll use in your template for the js variable, in single quotes, like:
Code:
var jsvar = '$jsstring';
This assumes that what's being entered and saved in the db is not html. If it is, you don't want the htmlspecialchars() in there (and then they really should be entering the <br> tags themselves, but that's OK).
Edit: Another thought - you could allow bbcode markup, and then when you pass it through the bbcode compiler it will change \n to <br>.
Quote:
Originally Posted by Mko
Regarding vB Templates, when they're saved, they don't print each carriage return. So, does anyone know how they do it? 
|
The templates are html, so you'd have to explicitly use <br> where you wanted them in the output.