/************* S E T T H I S V A R I A B L E S ****************************/
$timer = 4; // Switch to the next image after 5 sec
$title = "Micro Photo Slideshow"; // Title of your photo album
/******************************************************************************/
function displayPhoto(){
global $gid;
$id = isset($_GET['id']) ? $_GET['id'] : 0;
$actFile = 0;
// Open the actual directory
if ($handle = opendir(".")) {
// Read all file from the actual directory
while ($file = readdir($handle)) {
// Check whether tha actual item is a valid file
if (is_file($file)){
// Check whether the actual image is a thumbnail
if ((strpos($file,'.jpg')) || (strpos($file,'.jpeg'))){
if ($actFile == $id){
return '<img src="'.$file.'" class = "image" alt="Slideshow" />';
}
if ($actFile == 0){
$first = '<img src="'.$file.'" class = "image" alt="Slideshow" />';
}
$actFile++;
}
}
}
}
$gid = 1;
return $first;
}
$gid = isset($_GET['id']) ? $_GET['id'] : 0;
$gid++;
$image = displayPhoto();
$url = $_SERVER['PHP_SELF'].'?id='.$gid;
?>
Bookmarks