In the bsckup.sql file there are a small bug:
CREATE TABLE users (
id int(11) NOT NULL auto_increment,
name varchar(50) default NULL,
email varchar(50) default NULL,
username varchar(15) default NULL,
password varchar(15) default NULL,
administrator tinyint(4) default 0;
PRIMARY KEY (id),
UNIQUE KEY id (id)
) TYPE=MyISAM;
The line: "administrator tinyint(4) default 0;"
have I replace the "0;" -> "0," And it worked!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In the bsckup.sql file there are a small bug:
CREATE TABLE users (
id int(11) NOT NULL auto_increment,
name varchar(50) default NULL,
email varchar(50) default NULL,
username varchar(15) default NULL,
password varchar(15) default NULL,
administrator tinyint(4) default 0;
PRIMARY KEY (id),
UNIQUE KEY id (id)
) TYPE=MyISAM;
The line: "administrator tinyint(4) default 0;"
have I replace the "0;" -> "0," And it worked!