Prueba con esta modificación
Código PHP:
<?php
// leer imagenes en el diractorio fotos
$dir = "../fotos/";
$list_ignore = array('.','..','index.php');
if ($getdir = opendir($dir)) {
while (($foto = readdir($getdir)) !== false) {
if (in_array($foto, $list_ignore))
continue;
echo "Nombre: $foto: Tipo: ". filetype ($dir . $foto) . "<br>";
echo "<img src='$dir$foto'><br>";
}
closedir($getdir);
}
?>
saludos,
tuky.-