본문 바로가기
셈틀 Com/제로보드

최근게시물에서 코멘트 달리면 색깔바꾸기

by 길목 2003. 11. 22.
최근 게시물 관련한 소스를 수정하려면 약방의 감초죠..? 제로보드가 설치된 디렉토리의 outlogin.php파일을 열어서 다음을 수정합니다.

================================================================================================================

// 최근 글 목록 (일반 게시판 형)
function print_bbs($skinname, $title, $id, $num=5, $textlen=30, $datetype="Y/m/d") {
        global $_zb_path, $_zb_url, $connect, $t_board, $t_comment, $admin_table;

================================================================================================================
이와 같은 부분을 찾으셔서 위와 같이 $t_comment를 삽입합니다.


그리고 조금 아래로 내려오다가
if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
이 부분을 찾으셔서 주석처리 해 주시고 아래부분을 첨가합니다.

================================================================================================================

// 코멘트 갯수 원래 있던 것
//        if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";

// 코멘트 갯수 새로운 코멘트가 올라오면 색깔 바뀌게..
        if($data[total_comment]) {
                $last_comment = mysql_fetch_array(mysql_query("select * from $t_comment"."_$id where parent='$data[no]' order by reg_date desc limit 1", $connect));
                $last_comment_time = $last_comment[reg_date];
                if(time()-$last_comment_time<60*60*24) $comment = "<font color=blue>[".$data[total_comment]."]</font>";
                        // 위의 blue 부분을 수정하셔서 원하는 색깔로 바꾸실 수 있습니다.
                else $comment = "[".$data[total_comment]."]";
        } else $comment="";

댓글