Re: textarea new line to mysql database

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Well, its not exactly a 'problem' at all. The textarea just does what its
meant to do - accept raw text input and lets you process it via form action.
This is neither a PHP or a HTML 'problem'.

The reason you cannot see the line breaks when you echo the text on your
browser is the fact that the browser does not recognize '\n' as a line
break; it only recognizes '<br />'.

Coming to the <pre> tag, <pre> stands for preformatted; it tells the browser
to output the text in the raw format as it is. Hence it displays properly.

-Sterex


On Fri, May 15, 2009 at 7:54 PM, PHPScriptor <contact@xxxxxxxxxxxxxxx>wrote:

>
> Yes, I thought about that. But then you have a problem when you're going to
> 'edit' that data back in a form. Then you get "first line<br />second line"
> in your textarea.
>
>
> Manoj Sterex wrote:
> >
> > Well, instead of storing the text from the textarea directly into the db,
> > validate it and wrap it with <br /> tags (replace \n) and then store it.
> > This way you needn't use nl2br every time you retrieve the text from db.
> >
> > -Sterex
> >
> >
> > On Fri, May 15, 2009 at 7:42 PM, Stuart <stuttle@xxxxxxxxx> wrote:
> >
> >> 2009/5/15 PHPScriptor <contact@xxxxxxxxxxxxxxx>:
> >> >
> >> > 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
> >>
> >>
> >
> >
>
>
> -----
> visit my website at  http://www.phpscriptor.com/
> http://www.phpscriptor.com/
> --
> View this message in context:
> http://www.nabble.com/textarea-new-line-to-mysql-database-tp23560478p23560882.html
> Sent from the PHP - General mailing list archive at Nabble.com.
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux