15.10.2016, 07:29
What's the difference?
%d / %i?
%d inserts and large numbers? Exemple: 192230192334
Код HTML:
mysql_format(MySQLCon, qMYSQL[8], 290, "UPDATE `players` SET `BankMoney`=%d WHERE `ID`=%d", plInfo[playerid][pBankMoney],plInfo[playerid][pID]), mysql_tquery(MySQLCon, qMYSQL[8]);
Код HTML:
mysql_format(MySQLCon, qMYSQL[8], 290, "UPDATE `players` SET `BankMoney`=%i WHERE `ID`=%d", plInfo[playerid][pBankMoney],plInfo[playerid][pID]), mysql_tquery(MySQLCon, qMYSQL[8]);
%d inserts and large numbers? Exemple: 192230192334