I currently have an index.php file which allows me to output the list of files inside the same directory, the output shows the names then I used filemtime() function to show
$files = array_diff(scandir($dir,SCANDIR_SORT_DESCENDING), array('..', '.')); print_r($files);