\n"; echo "\n"; #################################### # check if style.css exists # and if so use that. # Otherwise use the default style. if (file_exists("style.css")) { echo "\n"; } else { echo "\n"; } echo "\n"; echo "\n"; ##################################################### # check if a header file exists and open it if so. if (file_exists("header.txt")) { if ($file=fopen("header.txt","r")) { fpassthru($file); } } ###################################################### #check if a captions file exists and open it if so. if (file_exists("captions.txt")) { $captions=1; $file=fopen("captions.txt","r"); while ($baseline=fgets($file,512)) { $line=split("::",$baseline); $captionsText[$line[0]]=$line[1]; } } else { $captions=0; } $dir=opendir("."); while ($file=readdir($dir)) { if(eregi (".+\.jpg$",$file)) { $size=GetImageSize("$file"); $width1=$size[0]+10; $width2=$size[0]+20; echo "
\n"; echo "
\n"; echo " \n"; echo "
\n"; echo "
\n"; if ($captions) { echo " $captionsText[$file]\n"; } else { echo "$file\n"; } echo "
\n"; echo "
\n"; } } ##################################################### # check if a footer file exists and open it if so. if (file_exists("footer.txt")) { if ($file=fopen("footer.txt","r")) { fpassthru($file); } } echo "\n"; echo "\n"; ?>