|
@@ -24,7 +24,22 @@ if ($isClassementValid) {
|
|
|
$rangMoyen = (int) $_GET["classement"];
|
|
$rangMoyen = (int) $_GET["classement"];
|
|
|
// HTML renvoyé au site
|
|
// HTML renvoyé au site
|
|
|
$html = <<<EOF
|
|
$html = <<<EOF
|
|
|
|
|
+<!doctype html>
|
|
|
|
|
+<html lang="fr">
|
|
|
|
|
+<head>
|
|
|
|
|
+ <meta charset="UTF-8">
|
|
|
|
|
+ <meta name="viewport"
|
|
|
|
|
+ content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
|
+ <title>RangLimier</title>
|
|
|
<link rel="stylesheet" href="assets/bootstrap.min.css">
|
|
<link rel="stylesheet" href="assets/bootstrap.min.css">
|
|
|
|
|
+ <link rel="stylesheet" href="assets/divers.css">
|
|
|
|
|
+</head>
|
|
|
|
|
+<body>
|
|
|
|
|
+ <h1>RangLimier</h1>
|
|
|
|
|
+ <p>Cet outil permet, en entrant un classement (réel ou supposé), de voir les choix disponibles à ce classement. <br>
|
|
|
|
|
+ <i>Attention : Cet outil est à but purement indicatif, les variations entre chaque année sont imprévisibles. Cela vous sert à avoir une vision globale des choix possible</i>
|
|
|
|
|
+ </p>
|
|
|
<style>
|
|
<style>
|
|
|
/* Tableau */
|
|
/* Tableau */
|
|
|
table {
|
|
table {
|
|
@@ -173,7 +188,7 @@ EOF;
|
|
|
$html .= "</tr>";
|
|
$html .= "</tr>";
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- $html .= "</tbody></table><br>";
|
|
|
|
|
|
|
+ $html .= "</tbody></table><br></body>";
|
|
|
|
|
|
|
|
// Affichage du HTML demandé
|
|
// Affichage du HTML demandé
|
|
|
echo $html;
|
|
echo $html;
|