Jump to content

Wrap paragraph's in <p> tags?


Perad

Recommended Posts

The function nl2br() will replace all new lines with <br /> tags, but if you need to put the content inside <p> tags, then you could try the following:

 

<?php

$raw_content = $_GET['textbox'];

$lines = explode("\r\n",$raw_content);

$formatted = array();

foreach ($lines AS $line){
   if (!empty($line))
       $formatted[] = "<p>" . $line . "</p>";
}

?>

 

The $formatted array will then contain each line from the form inside <p> tags.  Also, this will work if the content is coming from a <textarea> because the form uses both \r and \n for new lines.  If this doesn't work, play around with "\r", "\n", and "\r\n" to see which works if you aren't working with a <textarea>.

 

Theo

Link to comment
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.