mashable | bonjour, J'ai un formulaire "index.php" qui envoie des données par POST à "submit.php".Lorsque je remplis et j'envoie le formulaire, submit.php me dis que tout va bien pourtant rien a été inscris dans la table "milk" quand à la table "pmyl" celle ci à bien reçu son enregistrement
Quelqu'un saurait pourquoi il n'y a rien qui s'inscrit dans la table "milk" ??
Merci d'avance
Voici submit.php
Code :
- <?php
- try
- {
- $bdd = new PDO('effacé par elmoricq');
- }
- catch(Exception $e)
- {
- die('Erreur : '.$e->getMessage());
- }
- // ----------
- // Génération d'un mot de passe de 10 caractères alpha-numériques
- // ----------
- $tableau = array("0","1","2","3","4","5","6","7","8","9",
- "A","B","C","D","E","F","G","H","I","J","K","L","M","N",
- "O","P","Q","R","S","T","U","V","W","X","Y","Z" );
- // ----------
- $valeurs_aleatoires = array_rand($tableau, 10);
- // ----------
- $mot_de_passe = "";
- foreach($valeurs_aleatoires as $i)
- {
- $mot_de_passe = $mot_de_passe . $tableau[$i];
- }
- // ----------
- // On UTF-8 le nom du film
- // ----------
- $nom = '' . utf8_decode($_POST['nom']) . '';
- // ----------
- // On ajoute une entrée avec mysql_query
- // ----------
- $bdd->exec("effacé par elmoricq" );
- echo 'Le lien a bien été ajouté dans la base de donée!';
- // ----------
- // On UTF-8 le synopsis du film
- // ----------
- $synopsis = '' . utf8_decode($_POST['synopsis']) . '';
- // ----------
- // On UTF-8 les genres
- // ----------
- $genre = '' . utf8_decode($_POST['genre']) . '';
- // ----------
- // On traite l'image en 160/213
- // ----------
- $image21 = '' . $_POST['affiche'] . '';
- $affiche = str_replace('r_75_106', 'r_160_214/b_1_cfd7e1',$image21);
- // ----------
- // On fait la 1ere partie des mots clef
- // ----------
- $mef = '' . $nom . ',' . $synopsis . ',' . $genre . 'effacé par elmoricq';
- $mef2 = str_replace(' ', ',',$mef);
- // ----------
- // On fait la 2eme partie des mots clefs
- // ----------
- $motsclef = '' . $nom . ',' . $mef2 . '';
- // ----------
- // On prepare contentlow
- // ----------
- $contentlow = '<a href="' . $_POST['section'] . '' . $_POST['id'] . '"><img src="' . $affiche . '" border="0" alt="" title="' . $nom . ' ' . $_POST['qualite'] . ' ' . $_POST['bonux'] . ' - ' . $synopsis . ' Bon film en streaming" width="120" height="160" /></a>';
- // ----------
- // On prepare contentfull
- // ----------
- $contentfull = 'effacé par elmoricq ';
- // ----------
- // On prépare les options
- // ----------
- $option = 'show_title=
- link_titles=
- show_intro=
- show_section=
- link_section=
- show_category=
- link_category=
- show_vote=
- show_author=
- show_create_date=
- show_modify_date=
- show_pdf_icon=
- show_print_icon=
- show_email_icon=
- language=
- keyref=
- readmore=';
- // ----------
- // On prépare les métadonnées
- // ----------
- $optggl = 'robots=
- author=';
- // ----------
- // On ajoute une entrée dans l'autre base de donnees
- // ----------
- $bdd->exec("effacé par elmoricq" );
- echo 'Le film a bien été ajouté dans la base de donée!';
- echo '<br /><br /><b><a href="/Parser/">Ajouter un nouveau film</a></b>!';
- ?>
|
Message édité par Elmoricq le 13-04-2010 à 18:34:27
|