Image Gallery |
";
$galleryDir = '/gallery/';
$myGallery = new gallery($galleryDir, "gallery");
print "";
$imagesURL = $myGallery->images;
$captions = $myGallery->captions;
$thumbsURL = $myGallery->thumbs;
foreach($imagesURL as $key=> $value)
{
print "![$captions[$key]]($thumbsURL[$key]) | ";
if((($key+1) % 5) == 0 && ($key+1)!=0 )
{
print " ";
for($i=($key-4); $i<=($key);$i++)
{
print"$captions[$i] | ";
}
print" ";
$endLine=$key;
}
}
print " ";
for($i =$endLine+1; $i<=count($imagesURL)-1; $i++)
{
print"$captions[$i] | ";
}
print " |
";
/*---Begin Closing Format--------------------*/
include $_SERVER['DOCUMENT_ROOT'].'/format/close.html';
/*---End Closing Format----------------------*/
?>