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 34 35 36 37 38
| <?php
$mysqli = new mysqli("localhost", "root", "", "xxxx");
if (mysqli_connect_errno()) {
printf("Échec de la connexion : %s\n", mysqli_connect_error());
exit();
}
$nom=$_POST["nom"];
$prenom=$_POST["prenom"];
$age=$_POST["age"];
$sexe=$_POST["group1"];
$email=$_POST["mail"];
$code_postale=$_POST["postale"];
$ville=$_POST["ville"];
$identifiant=$_POST["identifiant"];
$mot_de_passe=$_POST["pass"];
$stmt = $mysqli->prepare("insert into membres (identifiant, mot_de_passe, nom, prenom, age, sexe, email, code_postale, ville) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)");
//if ($stmt === FALSE) {
// die ("Mysql Error: " . $mysqli->error);
//}
//if (!($stmt = $mysqli->prepare("INSERT INTO membres (identifiant, mot_de_passe, nom, prenom, age, sexe, email, code_postale, ville) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)"))) {
// echo "Echec de la préparation : (" . $mysqli->errno . ") " . $mysqli->error;
//}
mysqli_stmt_bind_param($stmt,'sssssssss', $identifiant, $mot_de_passe, $nom, $prenom, $age, $sexe, $email, $code_postale, $ville);
//if (!mysqli_stmt_bind_param('s', $nom)) {
//echo "Echec lors du liage des paramètres : (" . $stmt->errno . ") " . $stmt->error;
//}
//if (!$stmt->execute()) {
// echo "Echec lors de l'exécution : (" . $stmt->errno . ") " . $stmt->error;
//}
if (mysqli_stmt_execute($stmt) != FALSE) {
echo 'votre inscription à bien été prise en compte';
header ('location:index.php');
}
?> |
Partager