You don\'t have access to this page (yet?). Bug an admin to delete a plan post.
'); need ('boxes date html news sql table'); function planEntrySummary ($a) { need ('date html'); 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 'Your edit was correctly formed, but had no effect on the database. Go fig, huh?
'; } else { echo 'Your edit was processed successfully. Congratulations on your revision of history.:)
'; } } else { $query = 'SELECT p_id, p_date, p_user, p_title, p_plan FROM plans' ." WHERE p_id=$planID"; $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) { planEntryEditor ($entries[0]); } else { echo "This shouldn't even be possible, but there's more than one plan entry with ID '$planID'!
"; } } } else { newsBoxOpen ("All Plan Entries"); $query = 'SELECT p_id, p_date, p_user, p_title, p_plan FROM plans' .' ORDER BY p_date DESC'; $entries = sqlReadQuery ($query); if ($entries && is_array ($entries) && count ($entries)) { tableHeader ("100%"); ?>No plan entries available."; } newsBoxClose (); } ?>