tabella user ( qui mi piacerebbe identificarlo con un codice cliente anche se l'annuncio è gratis )

Codice PHP:
-- Struttura della tabella `user`
--

CREATE TABLE IF NOT EXISTS `user` (
  `
idint(11NOT NULL AUTO_INCREMENT,
  `
nometext NOT NULL,
  `
cognometext NOT NULL,
  `
emailtext NOT NULL,
  `
insegnatext NOT NULL,
  `
tipologiatext NOT NULL,
  
PRIMARY KEY (`id`)
ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

--
-- 
Dump dei dati per la tabella `user`
--

INSERT INTO `user` (`id`, `nome`, `cognome`, `email`, `insegna`, `tipologia`) VALUES
(1'0''0''0''0''0');