Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
$base = isset ($_GET["dir"]) ? $_GET["dir"] : "";
if (!$base)
die ("hata: yanlış kullanım.");
$dir = opendir ($base);
if (!$dir)
die ("'$base' dizini açılamadı.");
/* https://www.php.net/manual/tr/function.readdir.php */
while (($file = readdir ($dir)) !== false) /* php manual sayfası böyle yapılmasını öneriyor. */
echo is_dir ("$base/$file")
? "<a href='$base/$file'>$file</a><br />"
: "<p>$file</p>";