Delete manage_halls.php

This commit is contained in:
Markines16 2021-05-05 16:53:15 +02:00 committed by GitHub
parent 0afd4b16f5
commit 7c1c2a7711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
<?php
require_once('../assets/php/common/hall.php');
require_once('../assets/php/config.php');
$listhalls = '<form method="post" action="./?state=edit_hall">
<table class="alt">
<thead>
<tr>
<th>Numero</th>
<th>Filas</th>
<th>Columnas</th>
</tr>
</thead>
<tbody>';
foreach(Hall::getListHalls("1") as $hall){
$listhalls .='
<tr>
<td> '. $hall->getNumber().'</td>
<td> '. $hall->getNumRows().'</td>
<td> '. $hall->getNumCol().'</td>
<td> <input type="submit" name="edit" value="Editar" class="button" ></td>
</tr>';
}
$listhalls.='
</tbody>
</table>
<input type="submit" name="new" value="Añadir" class="button large" >
</form>';
echo $listhalls;
?>