project basis

This commit is contained in:
Morph01
2024-03-18 22:31:29 +01:00
commit 2ed144ff8c
20 changed files with 1358 additions and 0 deletions

41
vues/statistiques_vue.php Normal file
View File

@@ -0,0 +1,41 @@
<div class="panneau">
<div> <!-- Bloc permettant d'afficher les statistiques -->
<h2>Statistiques de la base</h2>
<?php if ($message != "") { ?>
<p class="notification">
<?= $message ?>
</p>
<?php } else { ?>
<table class="table_resultat">
<thead>
<tr>
<th>Propriété</th>
<th>Valeur</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nombre de tables</td>
<td>?</td>
</tr>
<tr>
<td>Nombre de tuples</td>
<td>?</td>
</tr>
</tbody>
</table>
<?php } ?>
</div>
</div>