4 errors were found during analysis.
Ending quote ' was expected. (near "" at position 510)
A comma or a closing bracket was expected. (near "', `email` varchar(100) NOT NULL, `active` int(1) NOT NULL default ‘0'" at position 181)
Unexpected beginning of statement. (near "20" at position 268)
Unrecognized statement type. (near "NOT NULL" at position 272)
SQL query:
CREATE TABLE IF NOT EXISTS `users`
(
`id` int(11) NOT NULL auto_increment,
`username` varchar(32) NOT NULL,
`password` varchar(32) NOT NULL,
`online` int(20) NOT NULL default ‘0',
`email` varchar(100) NOT NULL,
`active` int(1) NOT NULL default ‘0',
`rtime` int(20) NOT NULL default ‘0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `users` (`id`, `username`, `password`, `online`, `email`, `active`, `rtime`)
VALUES (1, ‘testing’, ‘testing’, 0, ‘[email protected]’, 0, 0);