Jump to content

Recommended Posts

It's been a while since I've coded PHP and I'm currently trying to refresh my memory. I'm trying to add a string of data to my database and then extract it and display it on a page. I've done this but the only problem is it does not maintain the linebreaks. I check my database through PHPadmin and its in tact. I did some research and found out about nl2br() but it doesn't seem to be working for me. I extract the string into a variable called $string then put string in nl2br($string) and echo the result and it doesn't work. I came across this function on the net.

function nl2brStrict($text, $replacement = '<br>')
{
return preg_replace("((\r\n)+)", trim($replacement), $text);
}

and it seems to do the job, only problem is it doesn't do it well enough. It maintains some of the linebreaks, but if there are more then two linebreaks after another it will only display one. Whats wrong?

Link to comment
https://forums.phpfreaks.com/topic/162133-best-method-for-adding-content/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.