Hello,
I am new to php sp this question may seem very basic:
I have created a 2-d array as follows:
$picturearray = array (
$i => array ("file" => "$file", "name" => "second"));
Lets say that there are 5 entries in this array (i = 1-5). How do I get the values of a particular array whithin this array, in other words how would I get the value for "file" for i=2, for example?
Thanks