Eine Möglichkeit wäre folgendes: PHP-Code: foreach(scandir('dein/dir/') as $image) { if($image != '.' && $image != '..') echo $image} Das ist zwar nicht besonders performant, aber eine bessere Lösung fällt mir nicht ein
foreach(scandir('dein/dir/') as $image) { if($image != '.' && $image != '..') echo $image}
--
Foren-Regeln