Admin List - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Other (
https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (
https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Admin List (
/showthread.php?tid=634393)
Admin List -
Stop - 18.05.2017
Hey Guys i am not good at mysql in php
anwyways i need to know how to make this admin List ( ik how to make their level , IG and last login etc..)...
i just need to know.. how to just make admins in this web instead of all registered players...

+rep in advance
Note : this isn't a adv
Re: Admin List -
Roozevelt - 18.05.2017
I don't understand you, what do you exactly need, be specific!!.
Re: Admin List -
BroZeus - 18.05.2017
You need to change query in .php file. Currently it will be something like "SELECT * FROM `tableName`". You need to do something like :
Код:
SELECT * FROM `tableName` WHERE adminLevel > 0
Re: Admin List -
Stop - 18.05.2017
Quote:
Originally Posted by BroZeus
You need to change query in .php file. Currently it will be something like "SELECT * FROM `tableName`". You need to do something like :
Код:
SELECT * FROM `tableName` WHERE adminLevel > 0
|
Код:
('SELECT playerName,playerAdminLevel,playerStatus, playerLastLogin FROM playeraccounts WHERE playerAdminLevel > 0 ORDER BY playerAdminLevel DESC');
this?