[MySQL] Problem Saving accounts
#1

Hi all,
I am creating a Sql GameMode
But i have a problem in saving account informations ... i've created the tables and everythink ... ( Finally, I think so )
Here is a line of saving an information :
Код:
mysql_query("UPDATE `nlrp` SET pLevel=%d WHERE Name =%s", PlayerInfo[playerid][pLevel], PlayerInfo[playerid][Name]);
Thanks A Lot !
Reply
#2

You have to format it, like this.

pawn Код:
new Query[80];
    format(Query, sizeof(Query), "UPDATE `nlrp` SET `pLevel` = %d WHERE `Name` = '%s'", PlayerInfo[playerid][pLevel], PlayerInfo[playerid][Name]);
    mysql_query(Query);
Reply
#3

I'll try that thanks ...
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)