On 6/10/07, Christian Cantrell <christian.cantrell@xxxxxxxxx> wrote:
I'm getting this error in my Apache log file, and I can't figure out why: Undefined index: password in /path/to/file.php on line 82 Some searching on Google turned up a bunch of questions, but no answers. Any idea what this warning message is referring to? Thanks, Christian
Yes, you're probably trying to get a value from an array by using a key that isn't in the array. Something like this: <?php $array = array( "user"=> "test", "foo"=>"bar"); $value = $array['password']; // Key "password" doesn't exist! ?> Check the line number and print out the array with var_dump/print_r to see what's in the array.. Tijnema
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php