상품정보를 일부 회원만 노출할수 있을까요?
본문
<?php if ($it['it_model']) { ?>
<tr>
<th scope="row">모델</th>
<td><?php echo $it['it_model']; ?></td>
</tr>
<?php } ?>
이부분을 레벨 3이상만 노출 될수 있을까요?
답변 3
<?php if ($member['mb_level'] >=3 && $it['it_model']) { ?> 이렇게 해보세요.
<?php if ($mb[''mb_level] >=3 && $it['it_model']) { ?>
<tr>
<th scope="row">모델</th>
<td><?php echo $it['it_model']; ?></td>
</tr>
<?php } ?>
오류 나는데요..
skin/shop/good_basic_simple/item.form.skin.php on line 88
답변을 작성하시기 전에 로그인 해주세요.