답변 버튼 출력관련~ 정보
답변 버튼 출력관련~본문
<?
if(strlen($list[$i][reply]) >= 0){
echo("<a href='<?=$g4_path?>/bbs/write.php?w=r&bo_table=B04&wr_id=<?=$list[$i][wr_id]?>'><img src='$board_skin_path/img/btn_reply.gif' border='0'></a>");
}
?>
이소스가 답변이 달린글에는 답변을 출력을 안한건데염 ㅜㅜ
답변이 달리면 원글에도 답변 버튼 출력안하게 수정하려면 어떻게해야하나요
if(strlen($list[$i][reply]) >= 0){
echo("<a href='<?=$g4_path?>/bbs/write.php?w=r&bo_table=B04&wr_id=<?=$list[$i][wr_id]?>'><img src='$board_skin_path/img/btn_reply.gif' border='0'></a>");
}
?>
이소스가 답변이 달린글에는 답변을 출력을 안한건데염 ㅜㅜ
답변이 달리면 원글에도 답변 버튼 출력안하게 수정하려면 어떻게해야하나요
댓글 전체
<?
$sql = "select count(wr_id) as cnt from $write_table where wr_parent = '$list[$i][wr_id]' and wr_is_comment = '0' and wr_id != wr_parent":
$row = sql_fetch($sql);
if (!$row['cnt']) {
echo("<a href='<?=$g4_path?>/bbs/write.php?w=r&bo_table=B04&wr_id=<?=$list[$i][wr_id]?>'><img src='$board_skin_path/img/btn_reply.gif' border='0'></a>");
}
?>
$sql = "select count(wr_id) as cnt from $write_table where wr_parent = '$list[$i][wr_id]' and wr_is_comment = '0' and wr_id != wr_parent":
$row = sql_fetch($sql);
if (!$row['cnt']) {
echo("<a href='<?=$g4_path?>/bbs/write.php?w=r&bo_table=B04&wr_id=<?=$list[$i][wr_id]?>'><img src='$board_skin_path/img/btn_reply.gif' border='0'></a>");
}
?>
감사합니다.^^
오류가나네요 ㅜㅜ