A very nice and simple way to order your files by date order.
This also includes a way to show all the file types using GLOB_BRACE
$directory = "reports/";
$images = glob($directory . "*.{png,jpg,jpeg}", GLOB_BRACE);
array_multisort(
array_map( 'filemtime', $images ),
SORT_NUMERIC,
SORT_DESC,
$images
);
foreach ($images as $file) {
echo "
";
}











