[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? ? $MailToAddress = [EMAIL PROTECTED]; $MailSubject = Get Involved List; if

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

[PHP] Parse error

2002-07-22 Thread Dean Ouellette
PHP 3.0 (I know I don't control it) Getting Parse error on last line of code which is just html Here is php code on page ?php If ('GET' == $HTTP_SERVER_VARS['REQUEST_METHOD']) { $MailToAddress = '[EMAIL PROTECTED]'; $MailSubject = 'Get Involved List'; ? ?php exit; } ? ? If

[PHP] Looked at documentation, should be fine

2002-07-22 Thread Dean Ouellette
I am running this on php 3.0 I have read every document I could find on the web, and cant figure out why this form submission is not working. No errors, just does not sent the e-mail to my account ?php If ('GET' == $HTTP_SERVER_VARS['REQUEST_METHOD']) { $MailToAddress = [EMAIL PROTECTED];

RE: [PHP] No text in form submission

2002-07-21 Thread Dean Ouellette
submission On Monday 22 July 2002 01:52, Dean Ouellette wrote: Been working on trying to get form submission to work. Now have it so when click enter it e-mails me, but there is no text subitted in the e-mail What version of php are you using? ? $MailToAddress = [EMAIL PROTECTED

RE: [PHP] No text in form submission

2002-07-21 Thread Dean Ouellette
PHP Version 3.0.16 -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 21, 2002 2:26 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] No text in form submission On Monday 22 July 2002 01:52, Dean Ouellette wrote: Been working on trying to get form submission

RE: [PHP] No text in form submission

2002-07-21 Thread Dean Ouellette
I have a different host I use for my sites, this is one I took over, and they insist I use this hosting company, friend of an owner. Have been trying to get to switch but wont. So any ideas on how can get this to work, no text coming in email When I print_r($_POST) what does that do?))) I

[PHP] Header question

2002-04-28 Thread Dean Ouellette
I have a tell a friend script and got the php script from a friend to make it work. I am a newbie so still do not fully udners stand it. Here is the problem, it puts the following at the top of each e-mail: X-Mailer: PHP/4.1.2 Here is the script: ?php $Subject = Look at this, I think you

RE: Re[2]: [PHP] Re: Header question

2002-04-28 Thread Dean Ouellette
Original Message From: Dean Ouellette [EMAIL PROTECTED] To: 'Yuri Petro' [EMAIL PROTECTED] Subject: [PHP] Re: Header question Now I get an error says Parse error: parse error in /usr/local/psa/home/vhosts/sitename.com/httpdocs/involved/friendsubmit.p hp on line 165 Line 165 is a /tr

[PHP] Newbie and includes

2002-04-06 Thread Dean Ouellette
Newbie who has my include working with this ?php include ('includes/footer.php'); ? Problem is when I try to use this with files in other directories I use ?php include ('/includes/footer.php'); ? Then get file cannot be found. Is there a way to do this? Dean

[PHP] Newbie database question

2002-01-13 Thread Dean Ouellette
I am entering info from form into database, is there a way to check say firstname, lastname and address to see if it is a duplicate to what is already in database and if it is then just enter any new information they may enter and not create a new entry -- PHP General Mailing List

Re: [PHP] Newbie database question

2002-01-13 Thread Dean Ouellette
MySql At 10:10 AM 1/13/2002 -0800, Richard Crawford wrote: Which database are you using? Dean Ouellette wrote: I am entering info from form into database, is there a way to check say firstname, lastname and address to see if it is a duplicate to what is already in database

Re: [PHP] Re: PHP vs. ASP

2002-01-09 Thread Dean Ouellette
I am a newbie to programming, ASP is easier to learn? I heard PHP was At 04:48 PM 1/9/2002 +0100, Robert Klinkenberg wrote: Well, I personally prefer PHP over ASP because better support from webhosting companies, but ASP has some good points. This is especially the case if you can setup the

[PHP] Error

2002-01-08 Thread Dean Ouellette
Hi I am learning php with Sams leanr php in 24 hours. This is one example ?php function addNums($firstnum, $secondnum) { $result = $firstnum + $secondnum; return $result;11: } // this is line 13 print addNums (3,5); ?