13.10.2011, 04:41
Solved, thanks to [HiC]TheKiller =]
[22:07:55] CMySQLHandler::Query(UPDATE accounts SET Registered=1, Email='NULL', Password='Censored', IP='127.0.0.1', Ping=16, LoggedIn=0 WHERE Name='Allan_Mander') - Successfully executed.
Код:
[22:07:55] CMySQLHandler::Query(UPDATE accounts SET Registered=1, Email='NULL', Password='Censored', IP='127.0.0.1', Ping=16, LoggedIn=0 WHERE Name='Allan_Mander') - Successfully executed. Thank you, [HiC]TheKiller! +rep I didn't know that, you tutorial doesn't say anything about it, you should add that to your tutorial for noobs like me! |
CURRENT NOTES 1. Change the query sizes if you are using a lot of variables. 2. Field names are case sensitive 3. Post any bugs here . 4. All passwords are hashed with SHA1, that means you cannot decrypt SHA1 passwords once they are set. For more information, visit the Wikipedia Page 5. For all strings, you must surround them with ' and '. So a string would be represented as username = '%s' and not username = %s. |