멤버 등급 변수

그누보두에서 멤버 등급을 다루는 변수는

  $member['mb_level'] 

이다.

예시

따라서 다음과 같이 하면 멤버 등급에 따라 화면에 보여지는 결과 값이 달라진다.

memberlevel.php
<table>
<tbody>
<tr>
  <td class="success text-center"> <strong><?php echo $ex_view['ex_5']['title']; ?></strong> </td>
  <td >  <?php 
   if ( $member['mb_level'] > 4) 
   {
     echo $ex_view['ex_5']['value']; 
   }else {
     echo "비밀이야 ";
   };
  ?> </td>
<tr>
</tbody>
</table>