I have this array... how do you print each of the filepath and filename? What is the best way to do this?
Array ( [0] => Array ( [fid
You can use also this without creating additional variables nor copying the data in the memory like foreach() does.
while (false !== (list($item, $values) = each($array))) { ... }