Ho fatto il backup del db e la tabella risulta con AUTO_INCREMENT=3
Però non ho settato il numero 3, dove lo trova?
PHP:
CREATE TABLE IF NOT EXISTS `sondaggio` (
`id` int(1) NOT NULL AUTO_INCREMENT,
`data_localeS` varchar(50) NOT NULL,
`giornali` int(12) NOT NULL,
`depliant` int(12) NOT NULL,
`televisione` int(12) NOT NULL,
`web_banner` int(12) NOT NULL,
`casualmente` int(12) NOT NULL,
`motori_di_ricerca` int(12) NOT NULL,
`amici_o_conoscenti` int(12) NOT NULL,
`ip` varchar(20) NOT NULL,
`country` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dump dei dati per la tabella `sondaggio`
--
INSERT INTO `sondaggio` (`id`, `data_localeS`, `giornali`, `depliant`, `televisione`, `web_banner`, `casualmente`, `motori_di_ricerca`, `amici_o_conoscenti`,`ip`,`country`) VALUES
(1, '0', 0, 0, 0, 0, 0, 0, 0, 0, 0);
Però non ho settato il numero 3, dove lo trova?