27.05.2018, 15:15
Ja vi e revi essas 2 linhas ponto a ponto e nгo faзo ideia do que esta gerando esses erros:
Linha 167:
Linha 168:
Alguem esta vendo algo de diferente que possa estar gerando esses erros
PHP код:
(167) : error 075: input line too long (after substitutions)
(168) : error 037: invalid string (possibly non-terminated string)
(168) : error 017: undefined symbol "CREATE"
(168) : error 017: undefined symbol "TABLE"
(168) : fatal error 107: too many error messages on one line
PHP код:
IDConexao = mysql_connect(HOST, USUARIO, SENHA, DATABASE);
PHP код:
mysql_query(IDConexao, "CREATE TABLE IF NOT EXISTS `Contas`(`ID`int AUTO_INCREMENT PRIMARY KEY, `Nome` varchar(24) NOT NULL DEFAULT ' ',`Senha` varchar(20) NOT NULL DEFAULT ' ',`Level` int(20) NOT NULL DEFAULT 0,`Dinheiro` int(20) NOT NULL DEFAULT 0,`Matou` int(10) NOT NULL DEFAULT 0,`Morreu` int(10) NOT NULL DEFAULT 0,`Skin` int(10) NOT NULL DEFAULT 0,`Vitorias` int(5) NOT NULL DEFAULT 0 ,`Admin` int(10) NOT NULL DEFAULT 0,`Cargo` varchar(20) NOT NULL,`Funcao` varchar(50) NOT NULL,`Banido` int(5) NOT NULL DEFAULT 0)", false);