Automatic Update
The Yoshiko and Akiomorita Media Gallery
June 27-September 10 2007
if(isset($_GET['section'])){
$file = addslashes($_GET['section']);
$contents;
$basedir = 'sections/';
$path = $basedir . $file;
if (!file_exists($basedir . $file)) {
echo "
Bad Filename
$path";
}
else {
$contents = file_get_contents($basedir . $file);
echo $contents;
}
}
else{
echo "
No File Specified
";
}
?>