This repository has been archived on 2024-04-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DeezCycle/vues/statistiques_vue.php
2024-03-18 22:31:29 +01:00

41 lines
571 B
PHP

<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>