php-td04/index.php
2025-01-25 16:43:59 +01:00

107 lines
2.7 KiB
PHP

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TD04</title>
</head>
<body>
<h1>Exercice 1 : Les mois</h1>
<?php
# A EXPLIQUER DANS CORRECTION
if ($_GET["error"] == "ex1"){
?>
<h3>!! Attention, entez un nombre de mois valide !!</h3>
<?php
}
?>
<form action="exercice1.php" method="GET">
<input type="text" name="numero" placeholder="Entrez un numéro de mois" required>
<input type="submit" value="Envoyer" >
</form>
<h1>Exercice 2 : Tableau de notes</h1>
<?php
# A EXPLIQUER DANS CORRECTION
if ($_GET["error"] == "ex2"){
?>
<h3>!! Entrez exactement dix notes, comprises entre 0 et 20 !!</h3>
<?php
}
?>
<form action="exercice2.php" method="GET">
<legend>Saisissez 10 notes : </legend>
<?php
for ($i=0 ; $i<10 ; $i++){
?>
<input type="number" name="note<?=$i?>" min="0" max="20" required>
<?php
}
?>
<input type="submit" value="Envoyer" >
</form>
<h1>Exercice 3 : Tirage au sort</h1>
<?php
$afficherFormulaireNoms = false;
# A EXPLIQUER DANS CORRECTION
if ($_GET["nbParticipants"] != null){
if ($_GET["nbParticipants"] > 10 || $_GET["nbParticipants"] < 2 ){
?>
<h3>!! Entrez un nombre de participants valide !!</h3>
<?php
} else {
$afficherFormulaireNoms = true;
?>
<form action="exercice3.php" method="GET">
<?php
for ($i=0 ; $i < $_GET["nbParticipants"] ; $i++){
$numero = $i+1;
?>
<label>Entrez le nom du participant n°<?=$numero?> : <input type="text" name="name<?=$numero?>" required placeholder="Entrez "></label>
<br>
<?php
}
?>
<input type="submit" value="Envoyer" >
</form>
<?php
}
}
if ($afficherFormulaireNoms == false){
if ($_GET["error"] == "ex3"){
?>
<h3>!! Entrez un nombre de participants valide !!</h3>
<?php
}
?>
<form action="index.php">
<label>Entrez un nombre de participants entre 2 et 10 : <input type="text" name="nbParticipants" required placeholder="Nombre de participants"></label>
<input type="submit" value="Envoyer" >
</form>
<?php
}
?>
</body>
</html>