-- AGWS Guestbook -- versione 1.0 -- http://www.agwebsolutions.it -- -- Host: localhost -- Generato il: 25 Lug, 2005 at 01:15 PM -- Versione MySQL: 4.1.9 -- Versione PHP: 4.3.10 -- -- Database: Sql120640_3 -- -- -------------------------------------------------------- -- -- 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=1 ; -- -- Dump dei dati per la tabella `accesso` -- INSERT INTO `accesso` ( `id` , `username` , `password` ) VALUES ('', 'test', 'test'); -- -------------------------------------------------------- -- -- Struttura della tabella `messaggi` -- CREATE TABLE `messaggi` ( `id` int(11) NOT NULL auto_increment, `nome` text NOT NULL, `email` text NOT NULL, `sitoweb` text, `commento` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dump dei dati per la tabella `messaggi` -- INSERT INTO `messaggi` VALUES (1, 'Alberto', 'alberto@agwebsolutions.it', 'http://www.agwebsolutions.it', 'Ciao ciao!!!:mrgreen:\r\n\r\nBellissimo guestbook!!!'); INSERT INTO `messaggi` VALUES (2, 'Tizio', 'tizio@caio.it', 'http://', 'Ciao ciao!!! Ma che bel guestbook!!');