Jump to content

Display all images in a directory..


forumnz

Recommended Posts

Thanks.. I have come up with this but it wont display the image. What is wrong with it?

 

<?php
$d = dir("upload/sport_motocross");
echo "Handle: " . $d->handle . "\n";
echo "Path: " . $d->path . "\n";
while (false !== ($entry = $d->read())) {
   echo "<a img src=" . $entry."\n" . "/>";
}
$d->close();
?> 

<?php
$d = dir("upload/sport_motocross");
echo "Handle: " . $d->handle . "\n";
echo "Path: " . $d->path . "\n";
while (false !== ($entry = $d->read())) {
   if ($entry == "." || $entry == "..") {
       continue;
   }elseif (!ereg('gif|jpg|jpeg|png', $entry)) {
       continue;
   }  
   echo "<img src=" . $entry."\n" . "/>";
}
$d->close();
?> 

 

Try that.

I find it's much easier to use the glob() function.

 

<?php
fioreach(glob({'upload/sport_motocross/*.jpg','upload/sport_motocross/*.gif','upload/sport_motocross/*.png'}, GLOB_BRACE) as $file) {
   list($h, $w, $dmy1, $attr, $dmy2) = getimagesize($file);
   echo '<img src="' . $file . '" ' . $attr . "/><br />\n";
}
?>

 

Ken

Ok I have one more problem. How can I get the images to display in rows of 5 instead of one above the other?

 

This is my code so far.

 

<?php
$d = dir("sport_motocross");
//echo "Handle: " . $d->handle . "\n";
//echo "Path: " . $d->path . "\n";
while (false !== ($entry = $d->read())) {
   if ($entry == "." || $entry == "..") {
       continue;
   }elseif (!ereg('gif|jpg|jpeg|png', $entry)) {
       continue;
   }  
   echo "<img src=" . "http://www.designervision.co.nz/magik/gallery/sport_motocross/" .$entry. "\n" . "/>" . "<br />" . $entry. "<br />";

}
$d->close();
?>

  • 3 years later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.