j ai crée un formulaire avec des valeurs a cocher et je voulais savoir comment faire une redirection suivant les valeurs cochés sur le formulaire.
si par exemple je choisis frites et moins de 15 ans je tombe sur une page qui me donne le prix qu il faut payer (exemple 2€) et si je choisis frites et 25- 40 ans je tombe sur une page avec un prix différent (exemple 3€).
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <title>Notre première instruction : echo</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" media="screen" type="text/css" title="Design" href="design.css" /> </head> <body> <form method="post" action="traitement.php"> <p> Cochez les aliments que vous aimez manger :<br /> <input type="checkbox" name="frites" id="frites" /> <label for="frites">Frites</label><br /> <input type="checkbox" name="steak" id="steak" /> <label for="steak">Steak haché</label><br /> <input type="checkbox" name="epinards" id="epinards" /> <label for="epinards">Epinards</label><br /> <input type="checkbox" name="huitres" id="huitres" /> <label for="huitres">Huitres</label> </p> </form> <form method="post" action="traitement.php"> <p> Veuillez indiquer la tranche d'âge dans laquelle vous vous situez :<br /> <input type="radio" name="age" value="moins15" id="moins15" /> <label for="moins15">Moins de 15 ans</label><br /> <input type="radio" name="age" value="15-25" id="15-25" /> <label for="15-25">15-25 ans</label><br /> <input type="radio" name="age" value="25-40" id="25-40" /> <label for="25-40">25-40 ans</label><br /> <input type="radio" name="age" value="plus40" id="plus40" /> <label for="plus40">Encore plus vieux que ça ?!</label> </p> </form> <input type="submit" value="Valider" /> </body> </html>
Merci de votre aide.
Partager