// You can change the heading to whatever you want.
$heading = "Photo Gallery";
$current_dir = ".";
$num = $_GET["num"];
$handle = opendir($current_dir);
while( FALSE !== ( $file = readdir( $handle ) ) )
{
if( $file != '.' && $file != '..' && substr( $file, strrpos( $file, '.' ) ) == '.jpg' )
{
$files[] = $file;
}
}
$imageCount = count($files);
if(!$num || $num > $imageCount || $num == $imageCount) { $num = 0; }
if($num == "0") { $prevNum = ($imageCount - 1); } else { $prevNum = $num - 1; }
$nextNum = $num + 1;
print "
";
if($heading) { print "" . $heading . "
"; }
print "";
print "";
print "![" . $files[$num] . "](./" . $files[$num] . ") ";
print " |
";
print "< prev | MNSKATEBOARDER | next >
";
?>