diff --git a/panel_admin/manage_films.php b/panel_admin/manage_films.php
deleted file mode 100644
index 2b6ddb1..0000000
--- a/panel_admin/manage_films.php
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
-
- ';
- }
- function deleteFilm() {
- echo'
-
-
- ';
- }
- function editFilm() {
- echo'
-
-
- ';
- }
-
- // Logic Functions
- function confirmDelete() {
- $film = new FormFilm();
- $film->processesForm($_POST['id'],null,null,null,null,null,"del");
- $_SESSION['message'] = $film->getReply();
- header('Location: ../panel_admin/index.php?state=mf');
- }
- function confirmEdit() {
- $film = new FormFilm();
- $film->processesForm($_POST['id'], $_POST['tittle'], $_POST['duration'], $_POST['language'], $_POST['description'], $_POST['file'], "edit");
- $_SESSION['message']= $film->getReply();
- header('Location: ../panel_admin/index.php?state=mf');
- }
- function confirmAdd() {
- $film = new FormFilm();
- $film->processesForm(null, $_POST['tittle'], $_POST['duration'], $_POST['language'], $_POST['description'], $_POST['file'], "new");
- $_SESSION['message'] = $film->getReply();
- header('Location: ../panel_admin/index.php?state=mf');
- }
-
-
-?>
\ No newline at end of file