게시판에 새글이 올라오면 커뮤니티 메뉴에 new 이미지 출력하기
shop/boxcommunity.inc.php 를 아래와 같이 수정하여 주십시오.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table bgcolor=#FFFFFF width=100% cellpadding=0 cellspacing=0>
<tr><td align=center valign=top height=50><img src='<?=$g4[shop_img_path]?>/bar_community.gif'></td></tr>
<?
$hsql = " select bo_table, bo_subject, bo_new 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";
$sql2 = " select count(*) as cnt from {$g4['write_prefix']}{$row[bo_table]}
where wr_is_comment = 0
and wr_datetime >= '".date("Y-m-d H:i:s", $g4[server_time] - $row[bo_new] * 3600)."' ";
$row2 = sql_fetch($sql2);
$new = "";
if ($row2[cnt])
$new = "<img src='new이미지경로'>";
echo "<tr><td height=22> · <a href='$g4[path]/bbs/board.php?bo_table=$row[bo_table]'>$row[bo_subject]</a> $new</td></tr>\n";
}
if ($i==0)
echo "<tr><td height=50 align=center>등록된 게시판이 없습니다.</td></tr>\n";
?>
</table>
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table bgcolor=#FFFFFF width=100% cellpadding=0 cellspacing=0>
<tr><td align=center valign=top height=50><img src='<?=$g4[shop_img_path]?>/bar_community.gif'></td></tr>
<?
$hsql = " select bo_table, bo_subject, bo_new 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";
$sql2 = " select count(*) as cnt from {$g4['write_prefix']}{$row[bo_table]}
where wr_is_comment = 0
and wr_datetime >= '".date("Y-m-d H:i:s", $g4[server_time] - $row[bo_new] * 3600)."' ";
$row2 = sql_fetch($sql2);
$new = "";
if ($row2[cnt])
$new = "<img src='new이미지경로'>";
echo "<tr><td height=22> · <a href='$g4[path]/bbs/board.php?bo_table=$row[bo_table]'>$row[bo_subject]</a> $new</td></tr>\n";
}
if ($i==0)
echo "<tr><td height=50 align=center>등록된 게시판이 없습니다.</td></tr>\n";
?>
</table>
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 2개
커뮤니티 메뉴 외에도 상품 카테고리 쪽은 뉴 아이콘을 띄울수 없는지요.?
아울러 방금 테스트를 해보았는데..새로고침을 하면 new 이미지가 다시 없어지네요..
잠깐 나타나는게 아니라 하루정도 지속될수 있게 할수는 없는지요..?
질문답변에 글남겼더니 관리자님이 답변주셨어여...
http://sir.co.kr/bbs/board.php?bo_table=yc4_qa&wr_id=24467
브라우져의 캐시때문에 그랬던거 같아여...잘되네여....^^