Re: [PHP] Notice: Undefined index

2005-04-28 Thread John Nichel
Rob Kapfer wrote: Hello, This is a new install of PHP 5.0.4 on XP, I'm testing if it's installed correctly with the usual test.htm: Your name: Your age: Action.php: echo $_POST['name']; echo $_POST['age']; ?> Results: C:\NCC>action.php Notice: Undefined index: name in C:\NCC\action.php on lin

Re: [PHP] Notice: Undefined index

2005-04-28 Thread Jason Barnett
Also see: http://php.net/manual/en/function.array-key-exists.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Notice: Undefined index

2005-04-28 Thread Mike Johnson
From: Rob Kapfer [mailto:[EMAIL PROTECTED] > Hello, This is a new install of PHP 5.0.4 on XP, I'm testing if it's > installed correctly with the usual test.htm: > > > Your name: > > Your age: > > > > > > Action.php: > > > echo $_POST['name']; > > echo $_POST['age']; > > ?> > > Res