Add files via upload

This commit is contained in:
Fernando Méndez
2021-06-02 14:55:05 +02:00
committed by GitHub
parent 6efe3fc241
commit 85a0ff411d
8 changed files with 151 additions and 21 deletions

18
purchase/selectSeat.php Normal file
View File

@ -0,0 +1,18 @@
<?php
//General Config File:
require_once('../assets/php/config.php');
//Seats form:
require_once('includes/formSelectSeat.php');
$form = new FormSelectSeat();
$formHTML = $form->gestiona();
//Page-specific content:
$section = '<section class="row">
<!-- Seat Form -->
'.$formHTML.'
</div>';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>