관리자일 경우에만 a href가 작동하게.. 정보
관리자일 경우에만 a href가 작동하게..본문
<tr>
<td width="20" align="right"><img src="<?=$connect_skin_path?>/img/icon.gif" width="14" height="14"></td>
<td width="170"> <a href='<?=$g4['bbs_path']?>/current_connect.php'><strong>동접</strong>: <?=$row['total_cnt']?>명</a></td>
</tr>
이런 소스코드가 있는데요..
관리자일 경우에만 동접 *명을 누르면 a href태그가 작동하게 하고 싶습니다..
참고로
<tr>
<td width="20" align="right"><img src="<?=$connect_skin_path?>/img/icon.gif" width="14" height="14"></td>
<td width="170">
<? if($is_admin == 'super'){ ?>
<a href='<?=$g4['bbs_path']?>/current_connect.php'>
<? } else {?>
<strong>동접</strong>: <?=$row['total_cnt']?>명</a></td>
</tr>
<? } ?>
나
<? if($is_admin == 'super'){ ?>
<a href='<?=$g4['bbs_path']?>/current_connect.php'><strong>동접</strong>: <?=$row['total_cnt']?>명</a>
<? } else {?>
<strong>동접</strong>: <?=$row['total_cnt']?>명</a></td>
</tr>
<? } ?>
둘다 안됩니다..
댓글 전체
안된다는 것이 구체적으로 어떻게 안된다는 말씀인건가요?
링크가 보이지 않는 다는 건지, 링크가 작동하지 않는건지.. 등등
링크가 보이지 않는 다는 건지, 링크가 작동하지 않는건지.. 등등
해도 관리자/일반유저/비회원 전부 a href태그가 발생해요
<?php
if($is_admin == 'super'){
echo "<a href='$g4[bbs_path]/current_connect.php'>";
}
echo "<strong>동접</strong>: $row[total_cnt]명";
if($is_admin == 'super'){
echo "</a>";
}
?>
요렇게 해보세요 ㅇㅂㅇ
안되용..