images php coding issues or problems here.
Moderators: macek, egami, gesf
by kylehamilton » Sun Aug 01, 2010 12:56 pm
I have the following code which displays images and captions from a directory. I would like the images to be displayed in the order they were created. Somebody suggested I use glob(), but I have no idea how.
- Code: Select all
<?php
$dir = "exclusive_images/";
if ($opendir = opendir($dir)) {
//read directory
while(($file = readdir($opendir)) !==FALSE) {
if ( file_exists($dir.'/'.$file) && in_array( strtolower(pathinfo($file,PATHINFO_EXTENSION )), array('png','jpg','jpeg','gif'))) {
if (file_exists($dir.'/'.$file. '.txt'))
$caption = file_get_contents($dir.'/'.$file. '.txt');
else $caption = ucwords(str_replace(array('-','_'),' ', substr($file, 0, (strlen ($file)) - (strlen (strrchr($file,'.'))))));
echo '<tr><td><img src="' . $dir.'/'.$file .'" alt="'. $file .'" title="' . $file . '" width="200"></td><td>' . $caption . '</td></tr>';
}
}
}
?>
-
kylehamilton
- New php-forum User

-
- Posts: 2
- Joined: Sun Aug 01, 2010 12:46 pm
by kylehamilton » Wed Aug 04, 2010 4:28 am
Thanks.
-
kylehamilton
- New php-forum User

-
- Posts: 2
- Joined: Sun Aug 01, 2010 12:46 pm
Return to PHP coding => Images
Who is online
Users browsing this forum: No registered users and 1 guest