Checkbox ?
Résolu/Fermé
ben85350
Messages postés
610
Date d'inscription
vendredi 30 mai 2008
Statut
Membre
Dernière intervention
2 avril 2013
-
8 juil. 2008 à 12:07
ben85350 Messages postés 610 Date d'inscription vendredi 30 mai 2008 Statut Membre Dernière intervention 2 avril 2013 - 8 juil. 2008 à 12:18
ben85350 Messages postés 610 Date d'inscription vendredi 30 mai 2008 Statut Membre Dernière intervention 2 avril 2013 - 8 juil. 2008 à 12:18
1 réponse
Bonjour,
Voila comment utiliser les checkbox :
<form action="page2.php" method="POST" vname="checkbox">
<input type="checkbox" name="choix[]" value="choix1"> choix1<br>
<input type="checkbox" name="choix[]" value="choix2"> choix2<br>
<input type="checkbox" name="choix[]" value="choix3"> choix3<br>
<input type="submit" value="Enregistrer">
</form>
$_POST['choix'] est un tableau qui te retourne 1 ou plusieurs valeurs.
Voila comment utiliser les checkbox :
<form action="page2.php" method="POST" vname="checkbox">
<input type="checkbox" name="choix[]" value="choix1"> choix1<br>
<input type="checkbox" name="choix[]" value="choix2"> choix2<br>
<input type="checkbox" name="choix[]" value="choix3"> choix3<br>
<input type="submit" value="Enregistrer">
</form>
$_POST['choix'] est un tableau qui te retourne 1 ou plusieurs valeurs.
8 juil. 2008 à 12:18
Je n'avais jamais utilisé de checkbox ^^'