1 2 3 4 5 6 7 8 9 10 11 12 13
| function addReponse($id_personne,$sondage_en_cours,$question,$choix) {
$query = db()->prepare("insert into utilisateur_reponse(id_utilisateur,id_question,reponse_question,reponse)
values (:id_utilisateur,:id_question,:reponse_question,:reponse)");
$query->bindValue(':id_utilisateur', $id_personne);
$query->bindValue(':id_question', $sondage_en_cours);
$query->bindValue(':reponse_question', $question);
$query->bindValue(':reponse', $choix);
//echo $query;
if (!$query->execute()) {
throw new Exception("Insertion impossible dans utilisateur_reponse");
}
} |
Partager