RE: [PHP-WIN] basic form processing

2002-05-23 Thread Dash McElroy
No probs. Quick reminder: If you see the variables in the URL, it's GET. If you don't, it's POST. -Dash -Original Message- From: Nicole Amashta [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 2:59 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] basic form pro

Re: [PHP-WIN] basic form processing

2002-05-23 Thread Nicole Amashta
> To: [EMAIL PROTECTED] > Subject: [PHP-WIN] basic form processing > > > I am new to PHP and have been trying without success to process a very > simple form. My basic problem is trying to pass variables from a form to > another page, and to echo them in a results page. > &g

RE: [PHP-WIN] basic form processing

2002-05-23 Thread Dash McElroy
Change this line: to: -Dash -Original Message- From: Bill Hudspeth [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 8:58 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] basic form processing I am new to PHP and have been trying without success to process a very simple form

Re: [PHP-WIN] basic form processing

2002-05-23 Thread Scott Carr
Try: echo "Thanks " . $_POST['FirstName'] . " " . $_POST['LastName']"; -- Scott Carr OpenOffice.org Whiteboard-Doc Maintainer http://whiteboard.openoffice.org/doc/ Quoting Bill Hudspeth <[EMAIL PROTECTED]>: > I am new to PHP and have been trying without success to process a very > simple for

[PHP-WIN] basic form processing

2002-05-23 Thread Bill Hudspeth
I am new to PHP and have been trying without success to process a very simple form. My basic problem is trying to pass variables from a form to another page, and to echo them in a results page. I understand that the most recent versions of PHP allow you to pass user-entered form variables in th