email kathy if you continue to have problems."; } } } elseif (isset($HTTP_GET_VARS["eid"])) { $getId = $HTTP_GET_VARS["eid"]; $getQuery = "select id, user_id, DATE_FORMAT(event_date, '%m/%d/%Y') event_date, event_title, event_location, description, equipment from album.album_event where id = $getId and user_id = $usr_id"; $getRs = mysql_query($getQuery, $link); $getRows = mysql_fetch_array($getRs); $getId = $getRows["id"]; $getLocation = $getRows["event_location"]; $getTitle = $getRows["event_title"]; $getDate = $getRows["event_date"]; $getDesc = $getRows["description"]; $getEquip = $getRows["equipment"]; } elseif ($usr_id == "") { header("Location: /user/login.php"); } mysql_close($link); $pgeTitle = "Add Event"; $pgeKeywords = "online photo album add event"; $pgeContent = "Online photo album: Add Event"; $pgeJavascript = " "; $pgeContent = "
"; if (isset($err_msg) && $err_msg != "") { $pgeContent .= "

$err_msg

"; } if (isset($retStr)) { $pgeContent .= "

$retStr

"; } $pgeContent .= "


Add New Event Items with * are required.
(you can edit events by passing \"?eid=\" and the event id in the get string BUT only if it is your event.)
Title*
Date (mm/dd/yyyy)
Location
Description
Photo Equipment
 
"; include("$incrp/template.inc"); ?>