특정 그룹의 게시판만 나타나게 소스 수정 조언 부탁드립니다. 정보
특정 그룹의 게시판만 나타나게 소스 수정 조언 부탁드립니다.본문
<?
$hsql = " select bo_table, bo_subject from $g4[board_table] order by gr_id, bo_table ";
$hresult = sql_query($hsql);
for ($i=0; $row=sql_fetch_array($hresult); $i++)
{
if ($i > 0)
echo "<tr><td align=center><img src='$g4[shop_img_path]/dot_line.gif'></td></tr>\n";
echo "<tr><td height=22> · <a href='$g4[path]/bbs/board.php?bo_table=$row[bo_table]'>$row[bo_subject]</a></td></tr>\n";
}
if ($i==0)
echo "<tr><td height=50 align=center>등록된 게시판이 없습니다.</td></tr>\n";\
?>
소스가 위와 같을시 그룹에 속한 게시판만 리스트에 나오게 할려고 합니다.
어떻게 수정을 해야하는지요^^?;
$hsql = " select bo_table, bo_subject from $g4[board_table] order by gr_id, bo_table ";
$hresult = sql_query($hsql);
for ($i=0; $row=sql_fetch_array($hresult); $i++)
{
if ($i > 0)
echo "<tr><td align=center><img src='$g4[shop_img_path]/dot_line.gif'></td></tr>\n";
echo "<tr><td height=22> · <a href='$g4[path]/bbs/board.php?bo_table=$row[bo_table]'>$row[bo_subject]</a></td></tr>\n";
}
if ($i==0)
echo "<tr><td height=50 align=center>등록된 게시판이 없습니다.</td></tr>\n";\
?>
소스가 위와 같을시 그룹에 속한 게시판만 리스트에 나오게 할려고 합니다.
어떻게 수정을 해야하는지요^^?;
댓글 전체

특정 그룹이라면 래밸로 구분하면 되지 않나요??
그누보드는 1~10래밸로 구별되어있어서 1래밸은 비회원이고 2래밸 부터는 회원이에요
게시판 수정 누르신 후에 래밸설정을 해주시면 해결될거 같은데요^^
그누보드는 1~10래밸로 구별되어있어서 1래밸은 비회원이고 2래밸 부터는 회원이에요
게시판 수정 누르신 후에 래밸설정을 해주시면 해결될거 같은데요^^