Jump to content

inserting problem


Recommended Posts

im coding a forum using php. When you are writing a message and press enter you will get a blank row right?

But when you insert that to the database and then select the message and write it out on the page again there are no blank rows.

 

How can you make look like it did before you inserted it?

 

I hope you understand my question and are willing to help me

Thank you  :)

Link to comment
https://forums.phpfreaks.com/topic/239640-inserting-problem/
Share on other sites

I agree with boompa.

 

Basically when you insert text in a text field, line breaks are stored as '\n' but they do not work in html, so they need to be converted to '<br>'.

 

nltobr(); will do that for you. it's similar to str_replace("\n","<br />",$text);

 

Hope this helps

Link to comment
https://forums.phpfreaks.com/topic/239640-inserting-problem/#findComment-1231007
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.