run this query from your admin cp
Code:
CREATE TABLE `userregcode` (
`userregid` int(10) NOT NULL auto_increment,
`userregemail` varchar(100) collate utf8_unicode_ci NOT NULL,
`userregcode` varchar(100) collate utf8_unicode_ci NOT NULL,
`counted` int(10) NOT NULL,
`dayscounter` int(100) NOT NULL,
`wheretoapply` tinyint(1) NOT NULL,
PRIMARY KEY (`userregid`)
) ENGINE=MyISAM;
and if it says it is already there run this
Code:
DROP TABLE IF EXISTS `userregcode`;