This commit is contained in:
JARNOUEN DE VILLARTAY Ulysse (SAFRAN AIRCRAFT ENGINES)
2026-04-02 14:41:53 +02:00
parent d5c03b6d86
commit d82343a051
2 changed files with 63 additions and 20 deletions
+20 -1
View File
@@ -1,2 +1,21 @@
<?php
// TODO
$table = filter_input(INPUT_GET, 'table', FILTER_VALIDATE_INT);
$tableSaisie = filter_input(INPUT_GET, 'table', FILTER_UNSAFE_RAW);
$tableSaisie = is_string($tableSaisie) ? trim($tableSaisie) : '';
$lignes = [];
$messageErreur = '';
if ($tableSaisie !== '') {
if ($table === false || $table === null) {
$messageErreur = 'Veuillez saisir un entier valide.';
} else {
for ($multiplicateur = 1; $multiplicateur <= 10; $multiplicateur++) {
$lignes[] = [
'multiplicateur' => $multiplicateur,
'resultat' => $table * $multiplicateur,
];
}
}
}
+27 -3
View File
@@ -1,8 +1,8 @@
<?php
include 'include/controller.php';
include_once 'include/controller.php';
?>
<!doctype html>
<html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<link
@@ -10,14 +10,38 @@ include 'include/controller.php';
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">
<input
type="number"
name="table"
placeholder="table"
value="<?php echo htmlspecialchars($tableSaisie, 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>
</html>