Bonjour,
J'ai besoin de votre aide pour solutionner un bug d'insert.
Je n'ai aucun message d'erreur.
L'instruction d'insertion dans la bdd est purement et simplement ignorée.
Pouvez-vous m'aider à y voir plus clair svp ?
Un grand merci par avance.
Voici l'url : http://www.itiandgo.com/site/add_sortie-test.php
Modifié par jytest (08 Jun 2016 - 19:23)
J'ai besoin de votre aide pour solutionner un bug d'insert.
Je n'ai aucun message d'erreur.
L'instruction d'insertion dans la bdd est purement et simplement ignorée.
Pouvez-vous m'aider à y voir plus clair svp ?
Un grand merci par avance.
Voici l'url : http://www.itiandgo.com/site/add_sortie-test.php
$req = $bdd->prepare("INSERT INTO sorties (".
"sortie_user_id, sortie_statut, sortie_categorie_code, ".
"sortie_photo, sortie_titre01, ".
"sortie_site_web, sortie_descriptif, ".
"sortie_adresse01, sortie_adresse02, ".
"sortie_code_postal, sortie_localite, ".
"sortie_gps_longitude, sortie_gps_latitude, ".
"sortie_date_debut, sortie_date_fin, ".
"sortie_horaire01, sortie_horaire02, ".
"sortie_horaire03, sortie_horaire04, ".
"sortie_horaire05, sortie_horaire06, ".
"sortie_horaire07, ".
"sortie_prix_euros, ".
"sortie_restrictions, ".
"sortie_nbre_visites, ".
"sortie_date_creation, sortie_date_dern_modification".
") VALUES ('".
$user_id."', '".$_POST['sortie_statut']."', '".$_POST['sortie_categorie_code']."', '".
"upload', '".$_POST['sortie_titre01']."', '".
$_POST['sortie_site_web']."', '".$_POST['sortie_descriptif']."', '".
$_POST['sortie_adresse01']."', '".$_POST['sortie_adresse02']."', '".
$_POST['sortie_code_postal']."', '".$_POST['sortie_localite']."', '".
$_POST['sortie_gps_longitude']."', '".$_POST['sortie_gps_latitude']."', '".
$_POST['sortie_date_debut']."', '".$_POST['sortie_date_fin']."', '".
$_POST['sortie_horaire01']."', '".$_POST['sortie_horaire02']."', '".
$_POST['sortie_horaire03']."', '".$_POST['sortie_horaire04']."', '".
$_POST['sortie_horaire05']."', '".$_POST['sortie_horaire06']."', '".
$_POST['sortie_horaire07']."', '".
$_POST['sortie_prix_euros']."', '".
$_POST['sortie_restrictions']."', '".
$_POST['sortie_nbre_visites']."', '".
$_POST['sortie_date_creation']."', '".$_POST['sortie_date_dern_modification']."'".
")");
$req->execute();
$record = "10";
$req->closeCursor();
Modifié par jytest (08 Jun 2016 - 19:23)