On Mon, 29 Nov 2004 12:29:59 -0500, Chris Farrugia
<[EMAIL PROTECTED]> wrote:
> On one of my forms to send email, I have multiple line breaks with different
> paragraphs.  I looked up the nl2br function and that looks like an option,
> but I would ideally like to wrap these paragraphs inside <p></p> tags.  Is
> there a way to do this easily?  Any advice would be greatly appreciated.

explode() the text by the "\n" character, this will give you an array.
 Iterate over the array and add your <p> tags there.


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to