// Preamble $pageName = "Delete News"; $need = 'auth'; require 'parts/preamble.php'; // Load most of document if (!$userInfo['u_admin']) // no access from non-admin yet bailout ("
You don't have access to this page (yet?). Bug an admin to delete a news post.
"); need ('boxes news sql'); function convertToHTML ($string) { $table = array_flip (get_html_translation_table (HTML_ENTITIES)); return strtr ($string, $table); } function convertFromHTML ($string) { $table = get_html_translation_table (HTML_ENTITIES); return strtr ($string, $table); } function newsEntrySummary ($it) { need ("date"); return 'Bad mojo, man. I couldn't talk to the SQL server. It said '$sqlError'.
"; } elseif ($rows === false) { echo "Something bad happened, and MySQL said '$sqlError'. Bug an admin.
"; } elseif (!$rows) { echo "News entry $newsID didn't exist."; } else { echo "
News entry $newsID has been deleted."; } } else { $query = 'SELECT n_id, n_date, n_user, n_news FROM news_main' ." WHERE n_id='$newsID'"; $entries = sqlReadQuery ($query); if ($entries === null) { echo "
Bad mojo, man. I couldn't talk to the SQL server. It said '$sqlError'.
"; } elseif ($entries === false) { echo "Something bad happened, and MySQL said '$sqlError'. Bug an admin.
"; } elseif (count ($entries) == 1) { newsEntryConfirmation ($entries[0]); } else { echo "This shouldn't even be possible, but there's more than one news entry with ID '$newsID'!
"; } } } else { newsBoxOpen ("All News Postings"); $query = 'SELECT n_id, n_date, n_user, n_news FROM news_main' .' ORDER BY n_date DESC'; $entries = sqlReadQuery ($query); if ($entries && is_array ($entries) && count ($entries)) { tableHeader ("100%"); ?>No news available."; } newsBoxClose (); } ?>