You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
362 B

<head>
<meta charset="utf8"/>
<title>ERREUR :/</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Erreur</th>
<th>Commentaire</th>
</tr>
</thead>
<tbody>
<?php foreach($erreurs as $erreur => $commentaire) :?>
<tr>
<td><?=$erreur?></td>
<td><?=$commentaire?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</body>