prepare('DELETE FROM message WHERE id IN ('.implode(",",$ids).')'); if (!$stmt) throw new Exception('While preparing message statement: ' . $db->lastErrorMsg()); if (!$stmt->execute()) throw new Exception('While executing message statement: ' . $db->lastErrorMsg()); $reload = true; JSON_success(); } catch (\Exception $ex) { JSON_error($ex->getMessage()); } } else { log_and_die('Requested action not supported!'); }