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
Starting simple, with no HTML:
foreach($database as $file) { echo $file['filename'] . ' at ' . $file['filepath']; }
And you can otherwise manipulate the fields in the foreach.