Stap 5: De all.php-bestand maken
Gewoon weergegeven het bestand all.php van alle van de foto's die zijn genomen.Hier is de code voor dit bestand:
<! DOCTYPE html publiek "-//W3C//DTD XHTML 1.0 Transitional / / nl" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset = utf-8 "/ >
< titel > Alle foto's < / title >
< / head >
< body >
<? php
$dir = ' foto's /';
$files = scandir($dir);
foreach ($files als $ind_file) {}
Als ($ind_file == "." || $ind_file == "...") {
niets doen
} else {}
echo "< img src =' foto's / '. $ind_file." " > ";"
echo "< br >";
ECHO $ind_file;
echo "< br >< br >";
}
}
? >
< / body >
< / html >