par
charabia » 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')");
[php]mysql_query("INSERT INTO kit VALUES('', '$mail', '$titre', '$theme', '$couleur', '$police', '$img1', '$img2', '$img3', '$img4', '$admin', '$description')");[/php]
dans ta table le titre se trouve avant le mail, donc :
[php]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')");[/php]