Files
web_2025/R3.01/tp/tp2/ex2/multiplication.php
T

48 lines
1.6 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 2</title>
</head>
<body>
<main>
<h4>Table de multiplication</h4>
<form method="GET">
<input
type="number"
name="table"
placeholder="table"
value="<?php echo htmlspecialchars($table, ENT_QUOTES, 'UTF-8'); ?>"
>
<button type="submit">ENVOYER</button>
</form>
<?php if ($messageErreur !== '') : ?>
<p><?php echo htmlspecialchars($messageErreur, ENT_QUOTES, 'UTF-8'); ?></p>
<?php endif; ?>
<?php if ($table !== false && $table !== null) : ?>
<ul>
<?php foreach ($lignes as $ligne) : ?>
<li>
<?php echo htmlspecialchars((string) $table, ENT_QUOTES, 'UTF-8'); ?>
x
<?php echo htmlspecialchars((string) $ligne['multiplicateur'], ENT_QUOTES, 'UTF-8'); ?>
=
<?php echo htmlspecialchars((string) $ligne['resultat'], ENT_QUOTES, 'UTF-8'); ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</main>
</body>
2026-04-01 08:25:18 +02:00
</html>