Просмотр файла structura.sql
CREATE TABLE news ( id int not null auto_increment, time int, news text, PRIMARY KEY(id)) type=myisam; CREATE TABLE comm ( id int not null auto_increment, id_news int, time int, name text, msg text, PRIMARY KEY(id)) type=myisam;