Thanks everyone, it worked
-Original Message-
From: Ryan Jameson (USA) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 13, 2003 4:14 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP-DB] Simple PHP Script
It's the good ole' register_globals feature...
You'll need
Try referring to your variables as:
$_POST['submit1'] and
$_POST['vname']
Then check our register_globals on php.net to find out why.
I'm pretty sure that's what the problem is.
> -Original Message-
> From: Poon, Kelvin (Infomart) [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 1
It's the good ole' register_globals feature...
You'll need to either turn register_globals on in your php.ini file or access the
variables from their respective arrays ($_SERVER,$_GET,$_POST)... since your form
method is post it will be: $_POST['vname'].
Make sense?
If you put this at the top