Posts by Thalys • 41 points
2 posts
-
3
votes2
answers49
viewsQ: How to perform a query of a query stored in a string through the DB class?
I wanted to convert this query how to use it in DB Facades Lavarel SELECT FIND_IN_SET(KillCount, (SELECT GROUP_CONCAT(KillCount ORDER BY KillCount DESC) FROM users)) AS Rank FROM users WHERE id = 1…
-
1
votes1
answer70
viewsQ: Decryption problem
I have a Mysql session with PHP of a somewhat advanced PHP encryption using Sha512, I’m having trouble reversing it to decrypt the data. function gen_token($pass, $salt) { $salt = strtolower($salt);…