Jump to content

Store formatted text


xiao

Recommended Posts

Save it to the database with the /n as linebreaks.

 

When you output to a form, dont use any special functions, it will automatically add newlines for each /n it finds.

 

When outputting to html (printing it on your page), use the nl2br() function. ( echo nl2br($text) )

Link to comment
https://forums.phpfreaks.com/topic/82008-store-formatted-text/#findComment-417161
Share on other sites

And if I don't save it to a DB yet?

When my form validator gives an error, I use sessions to print the entered info back into the form.

But when I use nl2br($str) it uses \r\n\r\n

and when I just echo $str I still get \r\n\r\n

 

I'm using

<textarea><?php echo $str; ?></textarea>

Link to comment
https://forums.phpfreaks.com/topic/82008-store-formatted-text/#findComment-417221
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.