<?php
$dir = "./Maps/";
// Open a directory, and read its contents
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo '<a href="https://minecraft.bleep.fr/Maps/'.$file.'">https://minecraft.bleep.fr/Maps/'.$file.'</a><br>';
}
closedir($dh);
}
}
?>