09.02.2012, 16:17
Hello, I have a problem with php login system. In the gamemode login system very strange and I can't understand how to unhash mysql password with php.
Pawn
Pawn
pawn Код:
if(strlen(inputtext) != 0)
{
new string[310], HashedPW[145];
WP_Hash(HashedPW, sizeof (HashedPW), inputtext);
format(string, sizeof(string), "INSERT INTO `players` (Name, Password) VALUES ('%s', '%s')",ZaidejoVardas(playerid),HashedPW );
mysql_query(string);
CheckIfAccExist( playerid );
}