ALTER TABLE `$table_settings` ADD `quizstatus` char(3) NOT NULL default 'on';

DROP TABLE IF EXISTS `$table_quiz`;
CREATE TABLE `$table_quiz` (
`id` tinyint(4) NOT NULL auto_increment,
`q` text NOT NULL,
`question` text NOT NULL,
`opt1` text NOT NULL,
`opt2` text NOT NULL,
`opt3` text NOT NULL,
`opt4` text NOT NULL,
`answer` text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;