First of all I am very thankful for your reply. I did it but no use. Still I am getting the same reply/message.
Also when I tried to Execute SQL query, the following message is shown.
PHP Code:
You are not authorized to execute SQL queries
Quote:
Originally Posted by Ary Braga
Bro. make this.
Open notepad and
Copy and paste this code below.
Code:
DROP TABLE IF EXISTS `vb_userregcode`;
CREATE TABLE IF NOT EXISTS `vb_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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
Save your file in utf-8 format and rename to userregid.sql
After goto Php MyAdmin and choose your database.
click IMPORT and select your userregid.sql file on PC and click EXECUTE.
Done.
|