1
0

debbuging presence

This commit is contained in:
2022-09-09 16:52:26 +02:00
parent 4acb2992ca
commit c00b766cc4
5 changed files with 49 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
<?php
require_once "header.php";
require_once "config.php";
require_once $mohaPath . "/constants.php";
print '<form method="GET" action="display_stats.php">';
foreach ($_GET as $key => $value)
{
print '<input type=hidden name=' . $key . ' value=' . $value . ">";
}
print '<input type="date" name="startDate">' . EOLH;
print '<input type="date" name="endDate">' . EOLH;
print '<input type="submit" value="Afficher les statistiques">';
print "</form>" . EOL;
?>