a4580652f8
# Correction pour les TP1 TP2 et TP3 Je n'ai pas testé la connexion à la DB pour le moment car je ne peux pas me co sur https://dwarves.iut-fbleau.fr/phpmyadmin Co-authored-by: JARNOUEN DE VILLARTAY Ulysse (SAFRAN AIRCRAFT ENGINES) <ulysse.jarnouen-de-villartay@safrangroup.com> Reviewed-on: #2
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
include_once 'include/controller.php';
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css"
|
|
/>
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
<title>Exercice 5</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h3>Conjugaison</h3>
|
|
|
|
<?php if ($messageErreur !== '') : ?>
|
|
<p><?php echo htmlspecialchars($messageErreur, ENT_QUOTES, 'UTF-8'); ?></p>
|
|
<?php else : ?>
|
|
<p>
|
|
Verbe :
|
|
<?php echo htmlspecialchars($verbe, ENT_QUOTES, 'UTF-8'); ?>
|
|
</p>
|
|
|
|
<?php foreach ($conjugaisons as $conjugaison) : ?>
|
|
<section>
|
|
<h4><?php echo htmlspecialchars($conjugaison['temps'], ENT_QUOTES, 'UTF-8'); ?></h4>
|
|
<ul>
|
|
<?php foreach ($conjugaison['formes'] as $forme) : ?>
|
|
<li><?php echo htmlspecialchars($forme, ENT_QUOTES, 'UTF-8'); ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</section>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
<p>
|
|
<a href="ex5.html">Retour au formulaire</a>
|
|
</p>
|
|
</main>
|
|
</body>
|
|
</html>
|