Kod:
<?php
// Mappen där bilderna ligger
$path = "images/gallery/";
$folder ="images/gallery/";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle)) {
if($file == "." || $file == ".." || $file == "index.php" )
continue;
echo "<a href=\"$folder/$file\"><img src=\"$folder/$file\" border=\"0\" style=\"max-width:320px;margin:5px;\"></a>";
}
// Close
closedir($dir_handle);
?>