13.02.2018, 20:40
Hello, how can i add a new line when i want to create my table on mysql
The code is:
I want to make it like this:
ETc.. how can i make it like that?
The code is:
PHP код:
mysql_tquery(Database, "CREATE TABLE IF NOT EXISTS `PLAYERS` (`ID` int(11) NOT NULL AUTO_INCREMENT,`USERNAME` varchar(24) NOT NULL,`PASSWORD` char(65) NOT NULL,`SALT` char(11) NOT NULL,`SCORE` mediumint(7), `KILLS` mediumint(7), `CASH` mediumint(7) NOT NULL DEFAULT '0',`DEATHS` mediumint(7) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), UNIQUE KEY `USERNAME` (`USERNAME`))");
PHP код:
mysql_tquery(Database, "CREATE TABLE IF NOT EXISTS 'PLAYERS' (
'ID' int(11) NOT NULL AUTO_INCREMENT,
'USERNAME' varchar(24) NOT NULL,
'PASSWORD' char(65) NOT NULL


