This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $userinfos = query("SELECT * FROM users ORDER BY cash DESC"); | |
| if ($userinfos === false) | |
| { | |
| apologize("Couldn't load your data."); | |
| } | |
| $positions = []; | |
| $rank = 1; | |
| //Cycle through each user |
NewerOlder