Paso 5: Crear el archivo all.php
El archivo all.php simplemente muestra todas las fotos que se han tomado.Aquí está el código de este archivo:
<! Html DOCTYPE público "-//W3C//DTD XHTML 1.0 Transitional / / EN" "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 "/ >
< title > todas las fotos de < / title >
< /HEAD >
< cuerpo >
<? php
$dir = "fotos /";
$files = scandir($dir);
foreach ($files as $ind_file) {}
Si ($ind_file == "." || $ind_file == "...") {
no hacer nada
} else {}
echo "< img src =" fotos / ". $ind_file."' > ";
echo "< br >";
echo $ind_file;
echo "< br >< br >";
}
}
? >
< /body >
< / html >