File "check.php"

Full Path: /home/bleepfrder/./Minecraft/check.php
File size: 312 bytes
MIME-type: text/html
Charset: utf-8

 <?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);
  }
}
?>