Bron and Matt's Super Fun Europe Trip 2008
\n";
$galleryName = ucwords(str_replace('-', ' ', $galleryId));
print "\t".$galleryName."
\n";
$pattern = $thumbnail_directory.'/'.$galleryId.'/*';
$images = glob($pattern);
if($images == FALSE) die('Unable to read '.$pattern.'. Probably a permissions issue.');
print "\n";
foreach($images as $image)
{
print "\t
\n";
}
print "
\n";
print "\n";
}
else
{
print "Unable to find that gallery at \"".$galleryId."\" :(";
}
}
function sanitiseStringToAlphaNumeric($toxicString)
{
$toxicString = str_replace(' ', '-', $toxicString);
return preg_replace('/[^a-zA-Z0-9-]/s', '', $toxicString);
}
?>