CREATE TABLE `wedding_cms` ( `id` int(11) NOT NULL auto_increment, `pagename` text NOT NULL, `title` text NOT NULL, `pagedetail` text NOT NULL, `image` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `wedding_cms` -- INSERT INTO `wedding_cms` (`id`, `pagename`, `title`, `pagedetail`, `image`) VALUES (1, 'Home', 'Home', '', ''), (2, 'Wedding Plans', 'Wedding Plans', '', ''), (3, 'Packages', 'Packages', '', ''), (4, 'Videos', 'Videos', '', ''), (5, 'About Us', 'About Us', '', ''), (6, 'Contact Us', 'Contact Us', '', ''), (7, 'Celebrity', 'Celebrity', '', '');