CREATE TABLE 'guestbook_authors' ( 'id_author' int(11) NOT NULL auto_increment, 'id_post' int(11) NOT NULL default '0', 'author_name' text NOT NULL, 'author_city' text NOT NULL, 'author_icq' text NOT NULL, 'author_email' text NOT NULL, PRIMARY KEY ('id_author') ) TYPE=MyISAM AUTO_INCREMENT=5 ; INSERT INTO 'guestbook_authors' VALUES (1, 1, 'Admin', 'Самара', '', 'zcinc@mail.ru'); CREATE TABLE 'guestbook_posts' ( 'id_post' int(11) NOT NULL auto_increment, 'post_body' text NOT NULL, 'post_answer' text NOT NULL, 'post_hide' enum('show','hide') NOT NULL default 'show', 'post_putdate' datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY ('id_post') ) TYPE=MyISAM PACK_KEYS=0 AUTO_INCREMENT=5 ; INSERT INTO 'guestbook_posts' VALUES (1, 'Это первое сообщение в нашей гостевой книге.', 'А это второе сообщение в нашей гостевой книге.', 'show', '2005-03-07 17:33:48');