<?php
$files = glob("*.*");
echo "<h1>📁 Mes Apps</h1>";
echo "<ul>";
foreach($files as $file) {
    if($file != "index.php") {  // ← cache index.php
        echo "<li><a href=\"?file=MyApps/$file\">$file</a></li>";
    }
}
echo "</ul>";
?>
