|
|
@@ -188,7 +188,16 @@ EOF;
|
|
|
$html .= "</tr>";
|
|
|
}
|
|
|
|
|
|
- $html .= "</tbody></table><br></body>";
|
|
|
+ $html .= "</tbody></table><br>";
|
|
|
+
|
|
|
+ // Affichage du tableau des légendes
|
|
|
+ $html .= "<table><thead><th scope='col'>Abréviation</th><th scope='col'>Nom de spécialité</th></thead>";
|
|
|
+
|
|
|
+ foreach ($specialityDatasetAbrev as $speId => $speAbrev) {
|
|
|
+ $html .= "<tr><td>".$speAbrev."</td><td>".$specialityDataset[$speId]."</td></tr>";
|
|
|
+ }
|
|
|
+
|
|
|
+ $html .= "</table></body>";
|
|
|
|
|
|
// Affichage du HTML demandé
|
|
|
echo $html;
|