View file topic/table.sql
CREATE TABLE sitetop ( id int(8) NOT NULL auto_increment, topic text, PRIMARY KEY (id) ); INSERT INTO `sitetop` VALUES (0, 'Добро пожаловать на наш сайт!'); CREATE TABLE admin ( id int(8) NOT NULL auto_increment, name text, pass text, PRIMARY KEY (id) ); INSERT INTO `admin` VALUES (0, 'admin', 'password');