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

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.