hidden range

Results 1 to 2 of 2
  1. #1
    Enthusiast jerearg is offline
    MemberRank
    Aug 2016 Join Date
    40Posts

    hidden range

    hi



    as giving hidden range ?from phpmyadmin > ranks


  2. #2
    Member selimrecep is offline
    MemberRank
    Jun 2014 Join Date
    72Posts

    Re: hidden range

    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.... 



Advertisement