if(isset($_GET['bio'])) { header("Location: http://www.gns72.com/alumni/"); exit; } ?>
include '../inc/db.inc.php'; $adminPage = true; include_once '../inc/album.inc.php'; ini_set("memory_limit","60M"); $id = $_GET['alumID']; if($id) { $result = mysql_query("select firstname, lastname FROM gns_alums WHERE alumID=$_GET[alumID]"); $alum = mysql_fetch_assoc($result); } echo "The photo was successfully uploaded.
Return to $alum[firstname]'s page."; } else{ echo "
Error Processing Image.
"; } } else { echo "There was an error uploading the photo.
"; } } // display the form on every page instance echo $addPhotoForm; include '../inc/footer.php'; ?>