Files
web_2025/R3.01/tp/tp2/ex5/conjuguer.php
T

46 lines
1.4 KiB
PHP
Raw Normal View History

2026-04-01 08:25:18 +02:00
<?php
2026-04-15 15:34:46 +02:00
include_once 'include/controller.php';
2026-04-01 08:25:18 +02:00
?>
<!DOCTYPE html>
2026-04-15 15:34:46 +02:00
<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>
2026-04-01 08:25:18 +02:00
2026-04-15 15:34:46 +02:00
<?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>
2026-04-01 08:25:18 +02:00
2026-04-15 15:34:46 +02:00
<?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; ?>
2026-04-01 08:25:18 +02:00
2026-04-15 15:34:46 +02:00
<p>
<a href="ex5.html">Retour au formulaire</a>
</p>
</main>
</body>
2026-04-01 08:25:18 +02:00
</html>