oldLearner57 wrote:
> what is the meaning of this error message:
>
> "undefined index"
Without more details of your script, it's difficult to give
you a
precise answer, but "Undefined index" is an error message
created by PHP
when you try to use an array variable that doesn't exist. For
instance,
if you have the following line:
echo $_POST['name'];
You will get Undefined index if $_POST['name'] doesn't exist.
One reason
it might happen is if your form use "Name" (with a capital
N). Because
PHP is case-sensitive, the correct variable would be
$_POST['Name'].
--
David Powers
Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
http://foundationphp.com/