추천인 닉네임 출력
본문
추천한 사람의 닉네임을 출력 하려고 합니다.
댓글 목록 바로위에
<div style="height:3px; background:#f1f1f1 repeat-x; line-height:1px; font-size:1px;"></div>
<table width="100%" border=0 cellpadding=0 cellspacing=0>
<tr>
<td width="90" style="padding-left:8px;" height="25"><img src="#" align=absmiddle> 추천 : <?php echo $view[wr_good]?>
<?php
for ($i=1; $i <=100; $i++) {
//추천인 아이디 출력(비추천은 good -> nogood)
$sql = " select * from $g5[board_good_table] where bo_table ='$bo_table' and wr_id='{$list[$i][wr_id]}' and bg_flag='good' ";
$result = sql_query($sql);
while($row = sql_fetch_array($result)){
echo $row[mb_id]."|";
}
}?>
</td>
</td>
</tr>
이렇게 했구요,
추천갯수 까지는 나오는데 추천인은 출력이 되고 있지 않네요
어디가 문제 인가요???
답변을 작성하시기 전에 로그인 해주세요.