probleme affichage

Avatar du membre
ViPHP
ViPHP | 3008 Messages

07 sept. 2006, 20:11

mysql_query("INSERT INTO kit VALUES('', '$mail', '$titre', '$theme', '$couleur', '$police', '$img1', '$img2', '$img3', '$img4', '$admin', '$description')");
dans ta table le titre se trouve avant le mail, donc :
mysql_query("INSERT INTO kit(id,titre,theme,couleur,police,img1,img2,img3,img4,admin,description) VALUES('', '$titre', '$mail', '$theme', '$couleur', '$police', '$img1', '$img2', '$img3', '$img4', '$admin', '$description')");