2009/5/15 PHPScriptor <cont...@phpscriptor.com>:
>
> Hello,
>
> How do you guys handle this "problem".
>
> Just a form with a textarea. When I use enters in the textarea it's saved to
> the db like this:
>
> database:
> "first line
> second line"
>
> when I edit the value in the form:
> "first line
> second line"
>
> when I output the value to html:
> "first linesecond line" (unless I use nl2br())
>
> Is there a way that I could save it to the db that will work for db, output
> and edit without using any other function like nl2br?

What's your problem with using nl2br? This is the reason it exists!!

Store the raw data in the database, and run nl2br on it when you
display it. I don't see a "problem".

-Stuart

-- 
http://stut.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to