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` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nome` text NOT NULL,
`cognome` text NOT NULL,
`email` text NOT NULL,
`insegna` text NOT NULL,
`tipologia` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dump dei dati per la tabella `user`
--
INSERT INTO `user` (`id`, `nome`, `cognome`, `email`, `insegna`, `tipologia`) VALUES
(1, '0', '0', '0', '0', '0');

Rispondi quotando