Password hash for sql (small doubt)
#4

I got these two warnings

pawn Код:
C:\Users\Prabin\Desktop\0.3z\gamemodes\TGR.pwn(28492) : warning 213: tag mismatch
C:\Users\Prabin\Desktop\0.3z\gamemodes\TGR.pwn(28499) : warning 213: tag mismatch
Lines
pawn Код:
new cache:result = mysql_query(mysql, query);
cache_delete(result);
Full lines

pawn Код:
new query[100], pname[24], passw[30];
            GetPlayerName(playerid, pname, 24);
            mysql_escape_string(inputtext , passw);

            mysql_format(mysql, query, sizeof(query), "SELECT * FROM `playerdata` WHERE `password`= SHA1('%s') AND `user`='%e'", passw, pname);//change `password` to your password name.
            new cache:result = mysql_query(mysql, query); //this line

            if(cache_get_row_count() > 0)
            {
                mysql_format(mysql, query, sizeof(query), "SELECT * FROM `playerdata` WHERE `user` = '%e' LIMIT 1",pname);
                mysql_tquery(mysql, query, "OnAccountLoad", "i", playerid);
            }
            cache_delete(result); //this line
Reply


Messages In This Thread
Password hash for sql (small doubt) - by Bondage - 14.01.2015, 23:05
Re: Password hash for sql (small doubt) - by xVIP3Rx - 14.01.2015, 23:11
Re: Password hash for sql (small doubt) - by Abagail - 14.01.2015, 23:12
Re: Password hash for sql (small doubt) - by Bondage - 15.01.2015, 10:04
Re: Password hash for sql (small doubt) - by xVIP3Rx - 15.01.2015, 10:13

Forum Jump:


Users browsing this thread: 1 Guest(s)