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. ^ That's really old, you

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Dean Ouellette
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]] Sent: Monday, July 22, 2002 9:43 AM Subject: [PHP] Newbie getting close, form submission I am a complete

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 (isset($HTTP_POST_VARS['Header'])) { This is 78

RE: [PHP] Newbie getting close, form submission

2002-07-22 Thread Dean Ouellette
']; -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 submission From: Dean Ouellette [mailto:[EMAIL PROTECTED]] Sent: Monday, July

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 Hosting *

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 double