Here is some of our recent wedding and event work
function listdir_by_date($path){
$dir = opendir($path);
$list = array();
while($file = readdir($dir)){
if ($file != '.' and $file != '..'){
// add the filename, to be sure not to
// overwrite a array key
$ctime = filectime($path . $file) . ',' . $file;
$list[$ctime] = $file;
}
}
closedir($dir);
krsort($list);
return $list;
}
$gallery_listing = listdir_by_date("/home/virtual/celsiaflorist.com/var/www/html/images/wedding.events/");
foreach($gallery_listing as $value) {
if (strstr($value, ".jpg")) {
?>
![Vancouver Flowers, Celsia Floral Arrangement](http://www.celsiaflorist.com/images/thumbs/wedding.events/<? echo substr($value, 0, -4); ?>.th.jpg)
}
}
?>