Re: [PHP] newbie mail() function

2001-02-07 Thread Steve Werby
"April" <[EMAIL PROTECTED]> wrote: > Your ''s in your strings are the problem. They need to be escaped, or they > will create a parse error. Not true. They (quotes inside a string) only need to be escaped if they are the same style as the quotes enclosing the string. And for those that don't k

RE: [PHP] newbie mail() function

2001-02-07 Thread Angerer, Chad
d'oh! I knew it was something simple. Thanks -Original Message- From: Jon Haworth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:42 AM To: 'Angerer, Chad'; '[EMAIL PROTECTED]' Subject: RE: [PHP] newbie mail() function You're missing a

Re: [PHP] newbie mail() function

2001-02-07 Thread April
rom: "Angerer, Chad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 07, 2001 10:36 AM Subject: [PHP] newbie mail() function > Hello! > > I am very new to php programming. I have been experimenting around with > php's mail function and

RE: [PHP] newbie mail() function

2001-02-07 Thread Jon Haworth
You're missing a semicolon on line 8. HTH Jon -Original Message- From: Angerer, Chad [mailto:[EMAIL PROTECTED]] Sent: 07 February 2001 16:37 To: [EMAIL PROTECTED] Subject: [PHP] newbie mail() function Hello! I am very new to php programming. I have been experimenting around

Re: [PHP] newbie mail() function

2001-02-07 Thread Steve Werby
"Angerer, Chad" <[EMAIL PROTECTED]> wrote: > $mailheaders = "From: My Web Site\n" > 9>$mailheaders .= "Reply-To: $email_address\n\n"; > > mail("[EMAIL PROTECTED]", "Feedback Form", $msg, $mailheaders); > > echo ("Thank you $user_name\n"); > echo ("I appreciate your feedback\n\n"); > > ?> > > for s

[PHP] newbie mail() function

2001-02-07 Thread Angerer, Chad
Hello! I am very new to php programming. I have been experimenting around with php's mail function and html forms. I have a generic HTML form with user_name, email_address, comments, and like_site as inputs on the HTML form. I have the following code in a seperate php file which the form calls: