10.02.2017, 14:37
From the looks of it, you are 'trying' to first retrieve 100 bans in descending order by names, then trying to get their ban reason one by one...
If You are looking for the last 100 bans, you should either use Order by date or ID..
PHP код:
format(query,sizeof(query),"SELECT DISTNCT `NAME`, ADMIN, REASON FROM `BANNED` ORDER BY `NAME` DESC limit 100");

