le structure for table `articles`
-TABLE IF NOT EXISTS `articles` (
`id` int (5) NOT NULL AUTO_INCREMENT,
`title` varchar (255) NOT NULL DEFAULT'',
`meta_d` varchar (255) NOT NULL DEFAULT'',
`meta_k` varchar (255) NOT NULL DEFAULT'',
`date` date NOT NULL DEFAULT '0000-00-00 ',
`description` text NOT NULL,
`text` text NOT NULL,
`author` varchar (255) NOT NULL DEFAULT'', KEY (`id`)
) ENGINE = MyISAM DEFAULT CHARSET = cp1251 AUTO_INCREMENT = 3;
-
- Dumping data for table `articles`
-INTO `articles` (`id`, `title`, `meta_d`, `meta_k`, `date`, `description`, `text`, `author`) VALUES
(1, 'Статті', 'Новини','', '2007-08-28 ',' Тут будуть розміщати нові свіжі статті ','',' '),
(2, 'Новини','','', '2007-08-28 ',' Тут будуть розміщати нові свіжі статті ','','');
------------------------------------------ ----------------
-
- Table structure for table `labs`
-TABLE IF NOT EXISTS `labs` (
`id` int (4) NOT NULL AUTO_INCREMENT,
`title` varchar (255) NOT NULL,
`meta_d` varchar (255) NOT NULL,
`meta_k` varchar (255) NOT NULL,
`date` date NOT NULL,
`description` text NOT NULL,
`text` text NOT NULL,
`author` varchar (255) NOT NULL, `id` (`id`)
) ENGINE = MyISAM DEFAULT CHARSET = cp1251 AUTO_INCREMENT = 5;
-
- Dumping data for table `labs`
-INTO `labs` (`id`, `title`, `meta_d`, `meta_k`, `date`, `description`, `text`, `author`) VALUES
(1, 'laba', 'lab', '2012-12-10 ',' laba ', '123123','');
------------------------------------------ ---------------
-
- Table structure for table `lessons`
-TABLE IF NOT EXISTS `lessons` (
`id` int (4) NOT NULL AUTO_INCREMENT,
`title` varchar (255) NOT NULL DEFAULT'',
`meta_d` varchar (255) NOT NULL DEFAULT'',
`meta_k` varchar (255) NOT NULL DEFAULT'',
`date` date NOT NULL DEFAULT '0000-00-00 ',