diff --git a/panel_admin/manage_promotions.php b/panel_admin/manage_promotions.php
new file mode 100644
index 0000000..301bef7
--- /dev/null
+++ b/panel_admin/manage_promotions.php
@@ -0,0 +1,192 @@
+allPromotionData();
+        $ids = array();
+        $tittles = array();
+        $descriptions = array();
+        $codes = array();
+        $actives = array();
+
+        foreach($promos as $key => $value){
+            $ids[$key] = $value->getId();
+            $tittles[$key] = $value->getTittle();
+            $descriptions[$key] = $value->getDescription();
+            $codes[$key] = $value->getCode();
+            $actives[$key] = $value->getActive();
+        }
+
+        
+        echo "
+            
+            
+                
+                
+                
+                    | Id+ | Título+ | Descripcion+ | Código+ | Activo+ | 
+                
+                
+                "; 
+        for($i = 0; $i < count($promos); $i++){
+            echo '
+                    | '. $ids[$i] .'+ | '. $tittles[$i] .'+ | '. $descriptions[$i] .'+ | '. $codes[$i] .'+ | '. $actives[$i] .'+ | +                         
++ | +                         
++ | 
+                '; 
+        } 
+        echo'
+                
+            
+            
+        ';
+            
+    }
+
+    function addPromotion(){
+        echo'   
+                
+                
+            
En construcción
"; break;
+                    case 'mp': require_once('manage_promotions.php');
+                                if(isset($_POST['edit_promotion'])) {
+                                    editPromotion();
+                                }
+                                else if(isset($_POST['delete_promotion'])) {
+                                    deletePromotion();
+                                }
+                                else if(isset($_POST['add_promotion'])) {
+                                    confirmAdd();
+                                }
+                                else if(isset($_POST['confirm_delete_promotion'])) {
+                                    confirmDelete();
+                                }
+                                else if(isset($_POST['confirm_edit_promotion'])) {
+                                    confirmEdit();
+                                }
+                                else {
+                                    addPromotion();
+                                    print_promotions();
+                                
+                                }; 
+                    break;
                     case 'mm': /*require_once('manage_managers.php')*/;echo"En construcción
"; break;
                     case 'un': echo"En construcción
"; break;
                     case 'ur': echo"En construcción
";; break;