chdir('/home/roygalloway/web/photos/Diane_Gerry_200605');
$dir = ".";
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($line = readdir($dh)) !== false) {
if ($line == "." || $line == ".." || $line == "index.php" || substr($line,strlen($line)-3,strlen($line)) == "txt") {} else {
echo "$line \n";
}
}
if ($_SERVER[QUERY_STRING] != "") {
echo "

";
$photofile = substr($_SERVER[QUERY_STRING],0,strlen($_SERVER[QUERY_STRING])-4).".txt";
if (file_exists($photofile)) {
$fcontents = file($photofile);
echo $fcontents[0];
}
}
}
}
?>