";
foreach ($files as $file) {
$year = substr($file, 7, 4);
$month = substr($file, 11, 2);
$day = substr($file, 13, 2);
$date = $year.$month.$day;
if (file_exists("thumbnails/".$date.".gif")){
//echo "

";
echo "
";
} else {
echo "
";
}
}
echo "
";
?>