CREATE TABLE `shoutbox` ( `shoutid` int(11) NOT NULL auto_increment, `userid` int(11) NOT NULL default '0', `shout_text` text NOT NULL, `timestamp` int(11) NOT NULL default '0', PRIMARY KEY (`shoutid`) ) TYPE=MyISAM;