when referencing an array the notation is array[arrayindex]
so if you have a two dimensional array shouldn't
array[index1][index2]
work? I'm trying to get $_FILES[myfile][name] and when I echo it I get Array[name]? Can anyone offer any help as to what I'm doing wrong?
If I do
$temp=$_FILES[myfile];
echo("$temp[name]");
it works.