Quote:
Originally Posted by Cap'n Steve
Run this query and tell me what it says:
Code:
SHOW CREATE TABLE $TPquotes
Replace the $TP with your table prefix.
|
Code:
quotes CREATE TABLE `quotes` ( `quoteid` int(10) unsigned NOT NULL auto_increment, `quote` mediumtext NOT NULL, `author` mediumtext NOT NULL, `userid` int(10) unsigned NOT NULL default '0', `approved` smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (`quoteid`), KEY `approved` (`approved`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1