How can I show the $ARRAY[0][.id] value? The .id make error because the "." character is invalid. Quote the key, i.e. $ARRAY[0]['.id'] This is a common requirement for ALL strings (i.e. text) in PHP. You can use either single quotes (apostrophes) as above, or double quotes, although I'd ...