
Ref Sheets for my Sona Sege Marl.
";
$files = scandir($dir);
$imageExtensions = array('png', 'jpg', 'jpeg', 'gif');
$images = array();
$filesWithoutImages = array();
foreach($files as $file) {
$extension = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if($file != "." && $file != "..") {
if(in_array($extension, $imageExtensions)) {
$images[] = $file;
} elseif (!in_array($extension, array('php', 'html'))) {
$filesWithoutImages[] = $file;
}
}
}
sort($filesWithoutImages, SORT_NATURAL | SORT_FLAG_CASE);
$html .= "
";
foreach ($images as $index => $image) {
$html .= "
";
if (($index + 1) % 4 === 0) {
$html .= "
";
}
}
$html .= "
";
foreach($filesWithoutImages as $file) {
if(is_dir($dir.'/'.$file)) {
$html .= "
" . $file . "";
} else {
$html .= "
" . $file . "";
}
}
$html .= "";
return $html;
}
$dir = '.';
if(isset($_GET['dir'])) {
$dir = $_GET['dir'];
}
echo createIndexTree($dir);
?>