<?php
if ($member['mb_level'] < 4) { ?>
<div class="btngoodfreeboard">
<a href="/bbs/write.php?bo_table=goodfree" class="btn btn-primary text-red" role="button">
우수회원 게시판 바로가기
</a>
</div>
<?php } ?>
4등급 이상의 회원만 버튼이 보이도록 설정하고 싶은데
이와같이 설정해도 2등급 회원에게도 버튼이 보입니다
뭔가 잘못된게 있으면 알려주시면 감사하겠습니다 ㅠㅠ
|
답변 1개 / 댓글 1개
채택된 답변
+20 포인트
2024-06-08 (토) 01:56:17
Copy
<?php
//if ($member['mb_level'] < 4) {
if ($member['mb_level'] >= 4) {
?>
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.