Great Neck South Class of 1972: $event[title]"; include '../inc/album.inc.php'; include '../inc/header.php'; if(!($id && $event)) { echo "

No such event

"; } else { if(!$admin) { echo "

Access Denied

"; } else { $now = gettimeofday(); if(isset($_POST['addevent'])) {//Try to add $title = $_POST['title']; $day = $_POST['date']; $date = strtotime($day,$now['sec']); $description = $_POST['description']; $text = $_POST['texthtml'] == "text"; $summary = $_POST['summary']; if($text) $summary = nl2br($summary); $summary = addslashes($summary); if(!($title && $date )) { echo "

Error adding event. Title and date must be included.

"; } else { $query = "UPDATE gns_events set title = '".$title."' , date = '".date('Y-m-d',$date)."', description = '".$description."', summary= '".$summary."', text='$text' WHERE eventID = ".$_GET['eventID']; $result = mysql_query($query); if($result) { echo "

\"$title\" Changed Succesfully

"; } else { echo "

Error Modifying event

". mysql_error()."

"; } echo "

Return to event

"; } } else { $text = $event['text'] ? "checked": ""; $html = $text ? "":"checked"; $summary = $text ? str_replace("
","",$event['summary']) : $event['summary']; $addeventForm = "

Title:

Date:

Description:

Summary:

"; // display the form on every page instance echo $addeventForm; } } } include '../inc/footer.php'; ?>