Web folder /public/TSG/AK8/Stage2/806
Plots
Other files in this folder
foreach (glob("*") as $filename) {
if (!in_array($filename, $displayed)) {
if (isset($_GET['match']) && !fnmatch('*'.$_GET['match'].'*', $filename)) continue;
if (is_dir($filename)) {
print "- [DIR] $filename
";
} else {
print "- $filename
";
}
}
}
?>