[Pawn] TOP 10 MySQL list - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] TOP 10 MySQL list (/showthread.php?tid=2808) |
TOP 10 MySQL list - Blood - 2024-06-30 Hey, I was wondering if someone could help me out writing a code for displaying TOP 10 players by a parameter, for example top 10 with highest score. I know how to do it in the oldest MySQL, but I havent been around for some time and can't figure out how to do it with the newest version. This is my old code Code: mysql_query("SELECT `Score` ,`User` FROM `table` ORDER BY `Score` DESC LIMIT 10"); RE: TOP 10 MySQL list - PainFrenemy - 2024-07-28 PHP Code: CMD:check(playerid) |