15.06.2016, 00:59
Hey guys
I'm working on an Admin mysql based filterscript which I plan to release here
I've done all the Admin registration phase and I wanted to test it but the mysql sent errors in this line:
So, I tried to debug it and run the command on the database itself using phpMyAdmin
It claims that and I quote:
Like this word doesn't exist in SQL language
Is there a new name ?
SQL Code:
I'm working on an Admin mysql based filterscript which I plan to release here
I've done all the Admin registration phase and I wanted to test it but the mysql sent errors in this line:
PHP Code:
(error #1064) You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') ENGINE = InnoDB DEFAULT CHARSET = latin1' at line 1
It claims that and I quote:
Code:
"Unrecognized data type: ENGINE"
Is there a new name ?
SQL Code:
PHP Code:
CREATE TABLE IF NOT EXISTS `Admins` ( "\
"`Username` varchar(24) NOT NULL," \
"`AdminLevel` int(1) NOT NULL," \
"`IP` varchar(16) NOT NULL," \
"`APassword` varchar(256) NOT NULL," \
"`ALogin` int(1) NOT NULL," \
") ENGINE = InnoDB DEFAULT CHARSET = latin1