Or an even simpler str_replace("\n", "<BR>", $sourcestring);

-----Original Message-----
From: Jason Murray [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 30, 2002 15:14
To: 'Jon'; [EMAIL PROTECTED]
Subject: RE: [PHP] Swapping <BR> for \n... ?


> I'm processing a form but all the functions I've found on the 
> web only seem to add the <BR> after the \n. I need to remove the 
> \n altogether - anyone know how I can kill the \n and put a <BR> 
> in it's place?

Sounds like you want a simple ereg_replace("\n", "<BR>", $sourcestring);

Jason

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to