//------------------ Settings ----------------
$col_ctr=0; // counter for images per row
$column = 3; // number of pictures in a row
$thumb_w=60;
$thumb_h=90;
//width=$thumb_w height=$thumb_h
$dir = "100thday/";
// read files from directory
$dirHandle = opendir($dir);
while ($file = readdir($dirHandle)){
if(!is_dir($file) && strpos($file, '.JPG')>0) {
$returnstr = $file;
$my_image = substr($returnstr,0,strpos($returnstr,"."));
$thumb_ = $dir.$my_image.".png";
$actual_= $dir.$my_image.".JPG";
echo "
".
".$thumb_.chr(34).)
";
}
}
?>