A voir également:
- PHP/mysql INSERT problème
- Touche insert - Guide
- Easy php - Télécharger - Divers Web & Internet
- Mysql community server - Télécharger - Bases de données
- Disk boot failure insert system disk and press enter - Guide
- Mysql error in file: /engine/classes/mysql.php at line 53 ✓ - Forum Réseaux sociaux
3 réponses
bissdebrazza
Messages postés
2065
Date d'inscription
vendredi 29 juin 2007
Statut
Contributeur
Dernière intervention
7 décembre 2017
712
10 mars 2009 à 21:30
10 mars 2009 à 21:30
Salut
essai ceci:
essai ceci:
<?php $qui= $_POST['qui']; echo $qui; $ou= $_POST['ou']; echo $ou; $comment= $_POST['comment']; echo $comment; mysql_connect("************","**********","******")or die(mysql_error()); mysql_select_db("*******")or die(mysql_error()); mysql_query("INSERT INTO feedback2(comment,date,ou,qui) VALUES('$_POST[comment]', 'date("Y-m-d")', '$_POST[ou]', '$_POST[qui]')")or die(mysql_error()); printf("<center>Feedback ajoutée avec succes !</center>"); ?>
lewis34
Messages postés
2557
Date d'inscription
samedi 21 juillet 2007
Statut
Membre
Dernière intervention
30 mai 2015
352
10 mars 2009 à 21:33
10 mars 2009 à 21:33
bsr ,si c'est cette igne qui pose probleme
tu a simplement oublié les ' apres tes [
essaye comme ca
mysql_query("INSERT INTO feedback2(comment,date,ou,qui) VALUES($_POST[comment], date("Y-m-d"), $_POST[ou], $_POST[qui])")or die(mysql_error());
tu a simplement oublié les ' apres tes [
essaye comme ca
mysql_query("INSERT INTO feedback2(comment,date,ou,qui) VALUES($_POST['comment'], date("Y-m-d"), $_POST['ou'], $_POST['qui'])")or die(mysql_error());
merci les gars maintenant ca c est réglé mais j' ai un autre problèmes :s
erreur :
Unknown column 'cccccccccccc' in 'field list'
les ccccccccc corresponde a ce que contient la variable $coment
ma table est comme sui:
commentaire text
date date
ou tinytext
qui tinytext
mon code:
<?php
$qui= $_POST['qui'];
$ou= $_POST['ou'];
$coment= $_POST['comment'];
$datte=date("Y-m-d");
mysql_connect("**********","*******","******")or die(mysql_error());
mysql_select_db("*****")or die(mysql_error());
mysql_query("INSERT INTO feedback2 VALUES($coment, $datte, $ou, $qui)")or die(mysql_error());
printf("<center>Feedback ajoutée avec succes !</center>");
?>
erreur :
Unknown column 'cccccccccccc' in 'field list'
les ccccccccc corresponde a ce que contient la variable $coment
ma table est comme sui:
commentaire text
date date
ou tinytext
qui tinytext
mon code:
<?php
$qui= $_POST['qui'];
$ou= $_POST['ou'];
$coment= $_POST['comment'];
$datte=date("Y-m-d");
mysql_connect("**********","*******","******")or die(mysql_error());
mysql_select_db("*****")or die(mysql_error());
mysql_query("INSERT INTO feedback2 VALUES($coment, $datte, $ou, $qui)")or die(mysql_error());
printf("<center>Feedback ajoutée avec succes !</center>");
?>