hi
as giving hidden range ?from phpmyadmin > ranks
hi
as giving hidden range ?from phpmyadmin > ranks
If you mean rank instead of range, If you using 'ranks' table for show staffs, if max rank 9, please try give 10 rank. Another way, you can add to CMS a condition in while.
Example,
PHP Code:$hiddenStaffs = array(
'example'
);
// ...
// Loop....
// In loop code block
if(in_array($row['username'], $hiddenStaffs)){
continue; // Skip this staff
}
// write staff codes (HTML)
// Loop end....