CREATE TABLE `news` ( `id` int(11) NOT NULL auto_increment, `title` text NOT NULL, `message` longtext NOT NULL, `who` text NOT NULL, `date` text NOT NULL, `time` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=4 ;