24.06.2012, 17:31
Hello!
(I'm using MySQL Plugin R7)
I've been trying to make a register system, so I've made this to save a new player:
(this is just the query and query call)
And It never wants to insert a player in the database?
Someone know why?
I'm very thankful for all answers!
(I've made all things to input have a value so it's not that.)
(I'm using MySQL Plugin R7)
I've been trying to make a register system, so I've made this to save a new player:
(this is just the query and query call)
Код:
format(query, sizeof(query), "INSERT INTO playerinfo (name, password, age, sex, date) VALUES ('%s',SHA1('%s'),%i,%b,'%s')", pname, passwordstring, playerinfo[playerid][age], playerinfo[playerid][sex], date); mysql_function_query(dbHandle, query,false,"","");
Someone know why?
I'm very thankful for all answers!
(I've made all things to input have a value so it's not that.)