PDO, INSERT et bindParam()
Résolu/Fermé
Elsyfiryos
Messages postés
83
Date d'inscription
dimanche 25 avril 2010
Statut
Membre
Dernière intervention
12 septembre 2012
-
17 nov. 2010 à 20:50
Elsyfiryos Messages postés 83 Date d'inscription dimanche 25 avril 2010 Statut Membre Dernière intervention 12 septembre 2012 - 19 nov. 2010 à 19:28
Elsyfiryos Messages postés 83 Date d'inscription dimanche 25 avril 2010 Statut Membre Dernière intervention 12 septembre 2012 - 19 nov. 2010 à 19:28
A voir également:
- Bindparam insert into php
- Touche insert - Guide
- Easy php - Télécharger - Divers Web & Internet
- Disk boot failure insert system disk and press enter - Guide
- Activer touche insert sur ASUS UX32A - Forum Clavier
- Reboot and select proper boot device or insert boot media in selected boot device and press a key - Forum Windows
1 réponse
Elsyfiryos
Messages postés
83
Date d'inscription
dimanche 25 avril 2010
Statut
Membre
Dernière intervention
12 septembre 2012
11
Modifié par Elsyfiryos le 19/11/2010 à 19:29
Modifié par Elsyfiryos le 19/11/2010 à 19:29
C'est bon j'ai résolu
Désolé du dérangement.
Je recherche une entreprise pour contrat d'alternance en informatique, IDF.
Désolé du dérangement.
$statement = $bdd->prepare("INSERT INTO client (mail, mdp, nom, prenom, adresse, cp, ville, pays, tel, date) VALUES (:mail, :mdp, :nom, :prenom, :adresse, :code, :ville, :pays, :tel, :date)"); $statement->bindParam(':mail', $mail); $statement->bindParam(':mdp', $password); $statement->bindParam(':nom', $name); $statement->bindParam(':prenom', $first_name); $statement->bindParam(':adresse', $address); $statement->bindParam(':code', $postal_code); $statement->bindParam(':ville', $town); $statement->bindParam(':pays', $country); $statement->bindParam(':tel', $phone); $statement->bindParam(':date', $time); $statement->execute(); $statement->closeCursor();
Je recherche une entreprise pour contrat d'alternance en informatique, IDF.
19 nov. 2010 à 10:09
19 nov. 2010 à 19:28
C'était un problème avec ma BDD, j'ai supprimé la table et je l'ai refaite.
Je ne sais pas pourquoi mais rien ne pouvait y être écrit.
Voila.