"; require $_SERVER['DOCUMENT_ROOT'].'/format/header.html'; print " RGS: Image Gallery "; require $_SERVER['DOCUMENT_ROOT'].'/format/userBar.html'; require $_SERVER['DOCUMENT_ROOT'].'/format/layout.html'; /*---End Page Formatting---------------------*/ /*---Begin Required PHP Scripts--------------*/ require $_SERVER['DOCUMENT_ROOT'].'/phpScripts/connect.php'; require $_SERVER['DOCUMENT_ROOT'].'/phpScripts/galleryClass.php'; /*---End Required PHP Scripts----------------*/ /*---Begin Page Content----------------------*/ print "

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 ""; if((($key+1) % 5) == 0 && ($key+1)!=0 ) { print ""; for($i=($key-4); $i<=($key);$i++) { print""; } print""; $endLine=$key; } } print ""; for($i =$endLine+1; $i<=count($imagesURL)-1; $i++) { print""; } print "
$captions[$key]

$captions[$i]

$captions[$i]

"; /*---Begin Closing Format--------------------*/ include $_SERVER['DOCUMENT_ROOT'].'/format/close.html'; /*---End Closing Format----------------------*/ ?>