Visa ett inlägg
Oläst 2008-10-02, 22:27 #8
mcfluff mcfluff är inte uppkopplad
Flitig postare
 
Reg.datum: Dec 2007
Inlägg: 477
mcfluff mcfluff är inte uppkopplad
Flitig postare
 
Reg.datum: Dec 2007
Inlägg: 477
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);

?>
mcfluff är inte uppkopplad   Svara med citatSvara med citat