24.01.2014, 07:05
Or you can use strcat, but you still need variable to store your string.
It's just an example, write as much as it fits in one function
pawn Код:
new
bigQuery[bignumber];
strcat(bigQuery, "CREATE TABLE IF NOT EXISTS `users` (`id` int(11) NOT NULL AUTO_INCREMENT,");
strcat(bigQuery, "`name` varchar(24) NOT NULL, `pass` varchar(129) NOT NULL,");
strcat(bigQuery, "PRIMARY KEY (`id`))");
![Cheesy](images/smilies/biggrin.png)