[Help] Making Staff Page For RevCMS

dukestar

Member
Nov 26, 2011
86
4
Hey, I am making staff page and i want to make it so that one of my ranks called 'Agents' is on a different page by itself. I do not know how to do this though. Could someone please help?

I am guessing that I would need to edit this line but I dont know how to make it only one rank.
Code:
$GetRanks = mysql_query("SELECT id,name FROM ranks WHERE id > 2 ORDER BY id DESC");
 

Sean

‫‫‫‫‫‫  ‫  Don't Worry, Be Happy
Dec 12, 2011
1,121
405
PHP:
$GetRanks = mysql_query("SELECT id,name FROM ranks WHERE id ='3' ORDER BY id DESC");
 

dukestar

Member
Nov 26, 2011
86
4
Sorry for double post but I also have this error for the ase

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\xampp\htdocs\app\tpl\class.html.php on line 55

Line 55:
Code:
$this->getHK('404');
 

Users who are viewing this thread

Top