first make sure you did the query on your database
PHP Code:
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;
if you did that make sure you added
In the "forumhome" template, replace this code:
With this code:
PHP Code:
$pminfo
$the_shoutbox