16 lines
474 B
PHP
16 lines
474 B
PHP
<?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;
|
|
|
|
?>
|