$ dir = “../diretório/”;
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (false !== ($file = readdir($dh))) {
if ($file != "." && $file != "..") {
echo "<img src="".$dir."""".$file."""" width=""150px"" class=""singlePhoto"">"";
}
}
closedir($dh);
}
}
“