hi,
the question is what you make visible if the Variable is an Array.
$array["Item"]
is not a Variable.
$array is the variable.
["Item"] is the param to reach one Element of an Array.
so the syntax $$array["Item"] can't find a Variable . only $$array without the params can find the right place in memory.
but if you try to access it for example echo $$array you only see "ARRAY" as output.
If you now want to reach the ["Item"] entry you must you the array functions of php.
but i must warn you. this is not the right way for accessing arrayentries. i give up this way and make use of the class functions of php. with that i have much more flexib. and better performance.
look for &$Variable references.
good luck ;-)
;-)