08.03.2018, 17:17 
	
	
	PHP код:
SetupPlayerTable() 
{ 
    mysql_tquery(g_SQL, "CREATE TABLE IF NOT EXISTS `players` (`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(24) NOT NULL,
`password` char(64) NOT NULL,
`salt` char(16) NOT NULL,
`kills` mediumint(8) NOT NULL DEFAULT '0',
`deaths` mediumint(8) NOT NULL DEFAULT '0',
`respect`  mediumint(8) NOT NULL DEFAULT '0',
`score`  mediumint(8) NOT NULL DEFAULT '0',
`points`  mediumint(8) NOT NULL DEFAULT '0',
`admin`  mediumint(8) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`))"); 
    return 1; 
} 
You can create another table by this:
PHP код:
    mysql_tquery(g_SQL, "CREATE TABLE IF NOT EXISTS `tablename` 


