// Used for incrementing through photos for a photo tour $baseImageName = 'golf'; $baseImageExt = '.jpg'; $min = 1; // starts at 1 $max = 5; // number of images to increment $dir = $_GET['d']; // contains f for forward or b for back $idx = $_GET['i']; // contains a numeric number if(!$idx || !is_numeric($idx)){ $idx = $min; } if($dir == 'f'){ $idx++; } if($dir == 'b'){ $idx--; } if($idx < 1){ $idx = 8; } else if($idx > $max){ $idx = 1; } else { // Don't adjust index } ?>
![]() |
||||||||||||
|
|
||||||||||||
|
||||||||||||