It means you are trying to access a part of an arraythat
isn't there.
If you have an array with 5 elements, you ca
get to them via:
$array[0]
through
to $array[4]
But if you try
$array[76]
which doesn't exist, you will get an
undefined Index error.
No comments:
Post a Comment