Add files via upload

This commit is contained in:
Markines16
2021-05-04 21:14:38 +02:00
committed by GitHub
parent 43219ccefa
commit 62db2dcd23
2 changed files with 55 additions and 52 deletions

View File

@ -0,0 +1,12 @@
<?php
//General Config File:
require_once('../../assets/php/config.php');
$prefix ="../../";
include_once('formHall.php');
if(isset($_POST['new_hall'])){
$data = array("option" => "new","number" => $_POST["number"],"cols" => $_POST["cols"],"rows" => $_POST["rows"], "cinema" => "1");
FormHall::processesForm($data);
}
?>