Re: [PHP] Processing HTML in mail form

2006-06-22 Thread Richard Lynch
On Tue, June 20, 2006 4:56 pm, Jonas Rosling wrote: I've done the following code bellow for an e-mail form. But it handles the HTML tags as text. Is there anyway to get the HTML tags processed to form the mail? ?php @extract($_POST); Errr. You might as well just turn

Re: [PHP] Processing HTML in mail form

2006-06-21 Thread Joe Wollard
correct? If that is the case, I guess you should use '\n' instead of 'BR'. Cheers, Prathap -- Original Message --- From: Jonas Rosling [EMAIL PROTECTED] To: PHP Lists php-general@lists.php.net Sent: Tue, 20 Jun 2006 23:56:47 +0200 Subject: [PHP] Processing HTML in mail form

[PHP] Processing HTML in mail form

2006-06-20 Thread Jonas Rosling
I've done the following code bellow for an e-mail form. But it handles the HTML tags as text. Is there anyway to get the HTML tags processed to form the mail? ?php @extract($_POST); $subject = 'Intresseanmalan'; $forname = stripslashes($forname); $lastname =

Re: [PHP] Processing HTML in mail form

2006-06-20 Thread Prathaban Mookiah
you should use '\n' instead of 'BR'. Cheers, Prathap -- Original Message --- From: Jonas Rosling [EMAIL PROTECTED] To: PHP Lists php-general@lists.php.net Sent: Tue, 20 Jun 2006 23:56:47 +0200 Subject: [PHP] Processing HTML in mail form I've done the following code bellow