If I know well, "Undefined index" is a warning, not an error.
If you have
error_reporting = E_ALL
in php.ini (not error_reporting = E_ALL & ~E_NOTICE)
$a = array('a' => 'xxx', 'b' => 'yyy');
and you try to access $a['c'], then PHP will report that you are trying
to access an undefined index array.
> -----Original Message-----
> From: Ivo Stoykov [mailto:[EMAIL PROTECTED]]
> Sent: 11 iulie 2001 17:21
> To: [EMAIL PROTECTED]
> Subject: [PHP] Undefined index?
>
>
> Hi everybody
>
> Does anybody knows what means "Undefined index" error? I
> couldn't find it in
> docs neither in php online doc site.
>
> Thank you
>
> Ivo
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
> [EMAIL PROTECTED]
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]