Search the Fire Ring
Support theFireRing.com by shopping at amazon.com
Just shop as you normally would but start by clicking on the link above.
|
$myKey = $_GET['YNPKey'];
$GalleryName = "";
$GalleryDir = "";
$GalleryThumbDir = "";
$GalleryDescription = "";
switch ($myKey)
{
case 1:
$GalleryName = "GlacierPoint";
$GalleryDir = "photos/YosemiteNP/GlacierPoint/";
$GalleryThumbDir = "photos/YosemiteNP/GlacierPoint/thumbs/";
$GalleryDescription = "Glacier Point";
break;
case 2:
$GalleryName = "PanoramaTrail1";
$GalleryDir = "photos/YosemiteNP/PanoramaTrail1/";
$GalleryThumbDir = "photos/YosemiteNP/PanoramaTrail1/thumbs/";
$GalleryDescription = "Panorama Trail, Part 1 - Glacier Point to Illouette Falls";
break;
case 3:
$GalleryName = "IllouetteCreek";
$GalleryDir = "photos/YosemiteNP/IllouetteCreek/";
$GalleryThumbDir = "photos/YosemiteNP/IllouetteCreek/thumbs/";
$GalleryDescription = "Illouette Creek";
break;
case 4:
$GalleryName = "PanoramaTrail2";
$GalleryDir = "photos/YosemiteNP/PanoramaTrail2/";
$GalleryThumbDir = "photos/YosemiteNP/PanoramaTrail2/thumbs/";
$GalleryDescription = "Panorama Trail, Part 2 - Illouette Creek to Nevada Falls";
break;
case 5:
$GalleryName = "NevadaFalls";
$GalleryDir = "photos/YosemiteNP/NevadaFalls/";
$GalleryThumbDir = "photos/YosemiteNP/NevadaFalls/thumbs/";
$GalleryDescription = "Nevada Falls and surrounding area.";
break;
case 6:
$GalleryName = "VernalFallsMistTrail";
$GalleryDir = "photos/YosemiteNP/VernalFallsMistTrail/";
$GalleryThumbDir = "photos/YosemiteNP/VernalFallsMistTrail/thumbs/";
$GalleryDescription = "Vernal Falls and the Mist Trail";
break;
case 7:
$GalleryName = "YosemiteFauna";
$GalleryDir = "photos/YosemiteNP/YosemiteFauna/";
$GalleryThumbDir = "photos/YosemiteNP/YosemiteFauna/thumbs/";
$GalleryDescription = "Yosemite Fauna";
break;
case 8:
$GalleryName = "YosemiteFlora";
$GalleryDir = "photos/YosemiteNP/YosemiteFlora/";
$GalleryThumbDir = "photos/YosemiteNP/YosemiteFlora/thumbs/";
$GalleryDescription = "Yosemite Flora";
break;
break;
case 9:
$GalleryName = "YosemitePeople";
$GalleryDir = "photos/YosemiteNP/YosemitePeople/";
$GalleryThumbDir = "photos/YosemiteNP/YosemitePeople/thumbs/";
$GalleryDescription = "Yosemite People - Hike For Discovery 2008 hikers";
break;
break;
default:
$GalleryName = "";
$GalleryDir = "";
$GalleryThumbDir = "";
$GalleryDescription = "";
break;
}
if ($GalleryName == "")
{
echo("home » Nothing Selected
| ");
echo("Nothing Selected | ");
}
else
{
require("../theFireRing/phputility/photohelpers.php");
echo("home » Nature Photography » Yosemite National Park » Yosemite Photos
| ");
echo("");
echo(" $GalleryDescription ");
createGallery( $GalleryDir, $GalleryThumbDir, 3, $GalleryName, $GalleryDescription, true );
echo(" | ");
}
?>
|