so did you download the scripts and copy all of it to the root of you website?
and then did you run the sql query in the database?
this query:
Quote:
DROP TABLE IF EXISTS `firmatari`;
CREATE TABLE `firmatari` (
`id` int(10) NOT NULL auto_increment,
`Nome` varchar(50) default NULL,
`Cognome` varchar(50) default NULL,
`Email` varchar(200) default NULL,
`Citta` varchar(50) default NULL,
`Professione` varchar(50) default NULL,
`Nazionalita` varchar(50) default NULL,
`Conferma` smallint(5) default NULL,
`Data` datetime default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `Conferma` (`Conferma`),
KEY `Email` (`Email`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
i'm not sure but you could try the sql query without the 'ENGINE=InnoDb' as I dont think that works when i used sql querys in mysql database.
If this does not help, please could you go into more detail about what your problem is as it is hard to work out the solution if you dont really know what the problem is.
|