<?php
$files = scandir("./"); 
$total = count($files);
$images = array();
for($x = 0; $x <= $total; $x++){
	if ($files[$x] != '.' && $files[$x] != '..' && $files[$x] != 'index.php' && $files[$x] != '') {
		$images[] = $files[$x];
		echo "<a style=\"display:inline-block;text-align:center;margin-bottom:5px;margin-left:2px;margin-right:2px;width:150px;height:150px\" download=\"".$files[$x]."\" href=\"".$files[$x]."\" ><img style=\"width:100px\" src=\"".$files[$x]."\"\><br><span>".$files[$x]."</span></a>";

	}
}
?>