Graphics Php

//-------------> START OF galleryInstall.php
/*
"LANGUAGES": - PHP 3.*
- JS DOM LEVEL 1
- CSS LEVEL 1
"PACKAGE" : - galleryInstall.php
- galleryDetail.php
- gallery.php
- ico.gif
"README" :This simple photo gallery reads the images in the FileSystem from lots of directories, then put them into an Array ();
Belove there is an example to see HOW insert new directory in the gallery:
$nome="name of directory"; // modify this line
array_push( $pathArray, $nome); // do not modify this line
$counter++; // cut away this line only if there are no more directories listed belove!!
Let me know if can I help you!
*/
/* S T A R T O F B U I L D I N G P AT H A R R A Y*/
$pathArray=array();
$counter=0; // initialize the number of pathArray' Key
$nome="image_upload";
array_push( $pathArray, $nome);
$counter++;
$nome="ecomuseo/SiteAdmin/uploader/data/images";
array_push( $pathArray, $nome);
$counter++;
$nome="images";
array_push( $pathArray, $nome);
/* E N D O F B U I L D I N G P AT H A R R A Y*/
//#
//-------------> START OF gallery.php
//#
/*






// S T A R T O F P A G I N G
$pager=25; // number of photos in a page
$cells=5; //number of horizontal cells
if ($h !=""){
$offset=$h+$pager;
}else{
$offset=$pager; //number of elements
$h=0;
}
// E N D O F P A G I N G
$y=0;
$key=0;// key of imgArray
while ($counter>= $y) { //loop on directory -->FILESYSTEM
$path=$pathArray[$y];
$handle = opendir($path);
while ($file = readdir( $handle)) { //loop on files
if( $file != "." || $file != ".." || trim($file) !="" ) {
$imgArray[$key]= array("file"=>"$file","path"=>"$path");
}
$key++;
}
$y++;
}
$td=0;
while ( $h<$offset ) { //loop on 'files' stored in imgArray[]
$file=$imgArray[$h]["file"];
$path=$imgArray[$h]["path"];
$printer=" ";
if($td == $cells){
$printer.="\n";
$td=0;
}
if ( (trim($path)=="" ) || (trim($file) =="") || ($file==".") || ($file == "..") ) {// check data stability in imgArray
$td= $td-1;
}else{
$number = $h-1;
$printer.="\n";
}
echo $printer;
$td++;
$h++;
}
?>

\n";
$printer.="\t\t\n";
$printer.="\t\t\t\n";
$printer.="\t\t\n";
$printer.="\t\t\n";
$printer.="\t\t\t\n";
$printer.="\t\t\n";
$printer.="
".$number."







$pager){
$back= $h-($pager+$pager);?>










//
//-------------> START OF galleryDetail.php
//
?>