Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
$dir_handle = opendir('/');
while($file = readdir($dir_handle))
{
echo $file.'<br />';
}
closedir($dir_handle);
Alles ist dynamisch möglich - alles eine Frage der Implementation...Toxictype schrieb:Ja schon, ich wollte nur wissen, ob das auch dynamisch möglich ist.
<?
$dir_handle = opendir('articles');
while($file = readdir($dir_handle))
{
echo "<a href=$file> $file <br> </a>";
}
closedir($dir_handle);
?>
Exakt da, wo ich gerade sitze.bubu-der-uhu schrieb:Wo hast du php gelernt?