관리자일 경우에만 a href가 작동하게..
[code]
<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>
[/code]
이런 소스코드가 있는데요..
관리자일 경우에만 동접 *명을 누르면 a href태그가 작동하게 하고 싶습니다..
참고로
[code]
<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>
<? } ?>
[/code]
나
[code]
<? 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>
<? } ?>
[/code]
둘다 안됩니다..
<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>
[/code]
이런 소스코드가 있는데요..
관리자일 경우에만 동접 *명을 누르면 a href태그가 작동하게 하고 싶습니다..
참고로
[code]
<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>
<? } ?>
[/code]
나
[code]
<? 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>
<? } ?>
[/code]
둘다 안됩니다..
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 4개
링크가 보이지 않는 다는 건지, 링크가 작동하지 않는건지.. 등등
<?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>";
}
?>
[/code]
요렇게 해보세요 ㅇㅂㅇ