Fw: [PHP] Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread Rick Emery
Try $_POST['name'] and $_POST['age'] Try $HTTP_POST_VARS['name'] and $HTTP_POST_VARS['age'] - Original Message - From: "David Scott" <[EMAIL PROTECTED]> To: <> Sent: Tuesday, December 10, 2002 10:56 AM Subject: [PHP] Help pl

[PHP] Help please: Unable to get $_POST["variable"]; to work in a form.

2002-12-10 Thread David Scott
I am going through the introductory tutorial on http://www.php.net/ and am stuck on this page: http://www.php.net/manual/en/tutorial.forms.php I have been able to get all of the examples up to this point to work. The form is simple: it asks for a text "name", a text "age" and has a submit button.