Désolé, je sèche !
Modifié par gordie (30 Oct 2006 - 12:39)
CREATE TABLE `la_gallery` (
`id` tinyint(2) NOT NULL auto_increment,
`titre` varchar(50) NOT NULL default '',
`desc` text NOT NULL,
`auteur` tinyint(1) NOT NULL default '0',
`photos` int(3) NOT NULL default '0',
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
INSERT into 'la_gallery' ('titre','desc','auteur') VALUES ('test gallerie n°1','montexte de gallerie','13')
a écrit :
Erreur dans la requête : INSERT into 'la_gallery' ('titre','desc','auteur') VALUES ('test gallerie n°1','montexte de gallerie','13')
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''la_gallery' ('titre','desc','auteur') VALUES ('test gallerie n
Modifié par gordie (30 Oct 2006 - 12:39)