Hi, habe wenig zeit... problem sagt die überschrift schon
new string[128] = "DROP TABLE IF EXISTS `accounts`;";
strcat(string, " CREATE TABLE `accounts` (");
strcat(string, " `id` int(11) NOT NULL AUTO_INCREMENT,");
strcat(string, " `Name` varchar(24) NOT NULL,");
strcat(string, " `Passwort` varchar(128) NOT NULL,");
strcat(string, " `Level` int(11) NOT NULL DEFAULT '1',");
strcat(string, " `Geld` int(11) NOT NULL DEFAULT '0',");
strcat(string, " `Kills` int(11) NOT NULL DEFAULT '0',");
strcat(string, " `Tode` int(11) NOT NULL DEFAULT '0',");
strcat(string, " `Health` float NOT NULL DEFAULT '100',");
strcat(string, " `Adminlevel` int(11) NOT NULL DEFAULT '0',");
strcat(string, " `Fraktion` int(11) NOT NULL DEFAULT '0',");
strcat(string, " `Banned` int(11) NOT NULL DEFAULT '0',");
strcat(string, " PRIMARY KEY (`id`)");
strcat(string, " ) ENGINE=MyISAM AUTO_INCREMENT=220 DEFAULT CHARSET=latin1;");
mysql_query(string);
währe nett wen es jemand für mich zu einer .sql datei machen würde