21.01.2015, 01:54
Oh that's just an example when creating your table, it simply means change float to double in your phpMyAdmin or SQL file.
As for the "\" - this is used for strings inside " " - from what I know, such as:
And one more thing, when you update your tables, always use ' ' for them. Like:
As for the "\" - this is used for strings inside " " - from what I know, such as:
pawn Код:
mysql_format(mysql, query, sizeof(query), "UPDATE `accounts` SET `Score`='%d', \
VIP='%d' WHERE id='%d'", pInfo[playerid][Score], pInfo[playerid][VIP], pInfo[playerid][AccID]);
pawn Код:
`Score` = '%d', `PosX` = '%f'