Re: [PHP] Newbie getting close, form submission

2002-07-22 Thread Justin French
I pointed this out to you in my original post: you mail() call should be: mail($MailToAddress, $MailSubject, $Message, "From: $MailFromAddress"); not: mail("$MailToAddress", "$MailSubject", "$Message", "From: $MailFromAddress"); In other words, I don't think you should wrap plain $vars in dou

Re: [PHP] Newbie getting close, form submission

2002-07-22 Thread Jason Wong
On Monday 22 July 2002 23:44, Dean Ouellette wrote: > Tried this, but same message > > $Message .= "\n\n$HTTP_POST_VARS['Footer']"; $Message .= "\n\n$HTTP_POST_VARS[Footer]"; -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk Open Source Software Systems Integrators * Web Design & Hos

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Dean Ouellette
age $Message .= "\n\n$HTTP_POST_VARS['Footer']"; -Original Message- From: Matt Schroebel [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:21 AM To: 'Dean Ouellette'; Matt Schroebel; [EMAIL PROTECTED] Subject: RE: [PHP] Newbie getting close, form su

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Matt Schroebel
> From: Dean Ouellette [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 10:56 AM > Subject: RE: [PHP] Newbie getting close, form submission > > $Message = $HTTP_POST_VARS['Message']; // should single quote > associative array indexes > if

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Dean Ouellette
in {} to parse } -Original Message- From: Matt Schroebel [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:36 AM To: 'Dean Ouellette'; [EMAIL PROTECTED] Subject: RE: [PHP] Newbie getting close, form submission > From: Dean Ouellette [mailto:[EMAIL PROTECTED]] >

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Matt Schroebel
> From: Dean Ouellette [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 9:43 AM > Subject: [PHP] Newbie getting close, form submission > I am a complete newbie, search the web for examples right now and use > them. > > The host has php 3.0. ^^

[PHP] Newbie getting close, form submission

2002-07-22 Thread Dean Ouellette
I am a complete newbie, search the web for examples right now and use them. The host has php 3.0 Having problems with for submission Right now, no error messages, but does not actually send the email. Ideas?