Re: [PHP] Re: I got the mail form blues! HTML/POST/mail() question - Also request for style suggestions

2004-12-17 Thread Richard Lynch
Monique Verrier wrote: > Thanks for the help already. I am still struggling. I didn't have any > luck > with urlencode(), but I used htmlentities() and the variable did get > passed > as a section of HTML code. When I sent the mail, however, it displayed as > text within the e-mail message and n

Re: [PHP] Re: I got the mail form blues! HTML/POST/mail() question - Also request for style suggestions

2004-12-17 Thread Monique Verrier
Thanks for the help already. I am still struggling. I didn't have any luck with urlencode(), but I used htmlentities() and the variable did get passed as a section of HTML code. When I sent the mail, however, it displayed as text within the e-mail message and not as a table. I was using these m

Re: [PHP] Re: I got the mail form blues! HTML/POST/mail() question - Also request for style suggestions

2004-12-17 Thread Richard Lynch
You need to http://php.net/urlencode anything you echo into a HIDDEN INPUT so that the HTML tags in it don't get used by the browser display rendering engine. Monique Verrier wrote: > Hi David -- > > When I do that, it creates a problem because it displays a "> at the > bottom > of my screen.

[PHP] Re: I got the mail form blues! HTML/POST/mail() question - Also request for style suggestions

2004-12-17 Thread Monique Verrier
Hi David -- When I do that, it creates a problem because it displays a "> at the bottom of my screen. It is making me crazy! I think it has to do with all the quotes in the HTML, but I don't know how to deal with it. I have listed the code below. Do you have any ideas? Thank you for you help.

[PHP] Re: I got the mail form blues! HTML/POST/mail() question - Also request for style suggestions

2004-12-16 Thread David Robley
On Fri, 17 Dec 2004 14:32, Monique Verrier wrote: > Hi! > > I have an html string stored in $message. I "submit" the form to a > subroutine and the value in $message is lost. All the other variables > come > into feedback.php just fine. I would love any help. This is a new > language for me s