Zao, ho un problema con questo codice, ditemi come bisogna riscriverlo:
--
-- Struttura della tabella `accesso`
--
CREATE TABLE `accesso` (
`Id` int(11) NOT NULL auto_increment,
`username` text NOT NULL,
`password` text NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dump dei dati per la tabella `accesso`
--
INSERT INTO `accesso` VALUES (1, 'username', 'password');
-- --------------------------------------------------------
--
-- Struttura della tabella `articoli`
--
CREATE TABLE `articoli` (
`id` int(11) NOT NULL auto_increment,
`titolo` text NOT NULL,
`testo` longtext NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dump dei dati per la tabella `articoli`
--