include '../inc/db.inc.php';
include '../inc/album.inc.php';
ini_set("memory_limit","60M");
$adminPage = true;
$id = $_GET['eventID'];
if($id)
{
$result = mysql_query("select description, title, date FROM gns_events WHERE eventID=$_GET[eventID]");
$event = mysql_fetch_assoc($result);
}
echo "
Great Neck South Class of 1972: $event[title]: Add Photo";
include '../inc/header.php';
if(!($id && $event))
{
echo "No such event
";
}
echo "$event[title]
";
$addPhotoForm = "
";
// If the user has submitted a file for uploading.
if(isset($_FILES['photo']) && is_uploaded_file($_FILES['photo']['tmp_name']))
{
$photoFileName = $id.".".$_FILES['photo']['name'];
$photoFileName = str_replace(" ","_",$photoFileName);
# Add the photo to the MySQL database
if(move_uploaded_file($_FILES['photo']['tmp_name'],
ABSOLUTE_PATH."events/".$photoFileName))
{
chmod(ABSOLUTE_PATH."events/".$photoFileName, 0755);
if(make_thumbnail($photoFileName,"events/"))
{
resizeImage($photoFileName,"events/",800,600);
add_event_photo($photoFileName, $_POST['title'],
$_POST['description'],$_GET['eventID']);
# Move the photo from the temp directory to
# the images directory.
echo "
The photo was successfully uploaded.
Return to the event page.";
}
else{
echo "
Error Processing Image. Us Type
";
}
}
else
{
echo "There was an error uploading the photo.
";
}
}
// display the form on every page instance
echo $addPhotoForm;
include '../inc/footer.php';
?>