1 2 3 4 5 6 7 8 9 10 11 12 13
| $cpt = 0;
while ($cpt++ < $nb_personnes)
{
echo $prenom_membre.$cpt = htmlspecialchars($_POST['prenom_membre'. $cpt]);
echo $nom_membre.$cpt = htmlspecialchars($_POST['nom_membre'. $cpt]);
echo $mail_membre.$cpt = htmlspecialchars($_POST['mail_membre'. $cpt]);
echo $instrument_membre.$cpt = htmlspecialchars($_POST['instrument_membre'. $cpt]);
}
// INSERTION DES MEMBRES
$bdd->exec("INSERT INTO membres(groupe, prenom, nom, mail, instrument, responsable) VALUES('$groupe', '$prenom_membre0', '$nom_membre0', '$mail_membre0', '$instrument_membre0', 1)");
$cpt = 1;
while ($cpt++ < $nb_personnes)
$bdd->exec("INSERT INTO membres(groupe, prenom, nom, mail, instrument, responsable) VALUES('$groupe', '$prenom_membre".$cpt."', '$nom_membre".$cpt."', '$mail_membre".$cpt."', '$instrument_membre".$cpt."', 0)"); |
Partager