채택완료

내 글만 호출하는방법~?

안녕하세요.

 

https://gnustudy.com/bbs/board.php?bo_table=gnu_pds&wr_id=2 

 

글을 참고하여 , 내 글, 내 댓글만 호출하는 기능을 사용하고싶은데요!

 

Copy
<?php

if (!defined('_GNUBOARD_')) exit;

 

// board_new 게시판 최신글 추출

function new_latest($skin_dir='', $rows=10, $subject_len=40, $is_comment=false, $cache_minute=5, $options='')

{

    global $g5;

 

    if (!$skin_dir) $skin_dir = 'basic';

 

    if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {

        if (G5_IS_MOBILE) {

            $latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];

            if(!is_dir($latest_skin_path))

                $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];

            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);

        } else {

            $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];

            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);

        }

        $skin_dir = $match[1];

    } else {

        if(G5_IS_MOBILE) {

            $latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;

            $latest_skin_url  = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;

        } else {

            $latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;

            $latest_skin_url  = G5_SKIN_URL.'/latest/'.$skin_dir;

        }

    }

 

    $cache_fwrite = false;

    if(G5_USE_CACHE) {

        if($is_comment)

            $type = 'comment';

        else

            $type = 'write';

 

        $cache_file = G5_DATA_PATH."/cache/latest-boardnew-{$type}-{$skin_dir}-{$rows}-{$subject_len}.php";

 

        if(!file_exists($cache_file)) {

            $cache_fwrite = true;

        } else {

            if($cache_minute > 0) {

                $filetime = filemtime($cache_file);

                if($filetime && $filetime < (G5_SERVER_TIME - 60 * $cache_minute)) {

                    @unlink($cache_file);

                    $cache_fwrite = true;

                }

            }

 

            if(!$cache_fwrite)

                include($cache_file);

        }

    }

 

    if(!G5_USE_CACHE || $cache_fwrite) {

        $list = array();

 

        $sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b where a.bo_table = b.bo_table and b.bo_use_search = 1 ";

 

        if($is_comment)

            $sql_common .= " and a.wr_id <> a.wr_parent ";

        else

            $sql_common .= " and a.wr_id = a.wr_parent ";

 

        $sql_order = " order by a.bn_id desc ";

 

        $sql = " select a.*, b.bo_subject {$sql_common} {$sql_order} limit {$rows} ";

 

        $result = sql_query($sql);

        for ($i=0; $row=sql_fetch_array($result); $i++) {

            $tmp_write_table = $g5['write_prefix'].$row['bo_table'];

 

            if ($row['wr_id'] == $row['wr_parent']) {

 

                // 원글

                $comment_link = "";

                $row2 = sql_fetch(" select * from {$tmp_write_table} where wr_id = '{$row['wr_id']}' ");

                $list[$i] = $row2;

 

                // 당일인 경우 시간으로 표시함

                $datetime = substr($row2['wr_datetime'],0,10);

                $datetime2 = $row2['wr_datetime'];

                if ($datetime == G5_TIME_YMD) {

                    $datetime2 = substr($datetime2,11,5);

                } else {

                    $datetime2 = substr($datetime2,5,5);

                }

 

                $list[$i]['comment_cnt'] = '';

                if ($row2['wr_comment'])

                    $list[$i]['comment_cnt'] = "<span class=\"cnt_cmt\">".$list[$i]['wr_comment']."</span>";

 

                $list[$i]['icon_new'] = '';

                if ($row2['wr_datetime'] >= date("Y-m-d H:i:s", G5_SERVER_TIME - (24 * 3600)))

                    $list[$i]['icon_new'] = '<img src="'.$latest_skin_url.'/img/icon_new.gif" alt="새글">';

 

                $list[$i]['icon_secret'] = '';

                if (strstr($row2['wr_option'], 'secret'))

                    $list[$i]['icon_secret'] = '<img src="'.$latest_skin_url.'/img/icon_secret.gif" alt="비밀글">';

 

            } else {

 

                // 코멘트

                $comment_link = '#c_'.$row['wr_id'];

                $row2 = sql_fetch(" select * from {$tmp_write_table} where wr_id = '{$row['wr_parent']}' ");

                $row3 = sql_fetch(" select wr_name, wr_datetime, wr_content, wr_option from {$tmp_write_table} where wr_id = '{$row['wr_id']}' ");

                $row2['wr_subject'] = $row3['wr_content'];

                $list[$i] = $row2;

                $list[$i]['wr_id'] = $row['wr_id'];

                $list[$i]['wr_name'] = $row3['wr_name'];

 

                // 당일인 경우 시간으로 표시함

                $datetime = substr($row3['wr_datetime'],0,10);

                $datetime2 = $row3['wr_datetime'];

                if ($datetime == G5_TIME_YMD) {

                    $datetime2 = substr($datetime2,11,5);

                } else {

                    $datetime2 = substr($datetime2,5,5);

                }

 

                $list[$i]['icon_new'] = '';

                if ($row3['wr_datetime'] >= date("Y-m-d H:i:s", G5_SERVER_TIME - (24 * 3600)))

                    $list[$i]['icon_new'] = '<img src="'.$latest_skin_url.'/img/icon_new.gif" alt="새글">';

 

                $list[$i]['icon_secret'] = '';

                if (strstr($row2['wr_option'], 'secret') || strstr($row3['wr_option'], 'secret')) {

                    $row2['wr_subject'] = '비밀 댓글입니다.';

                    $list[$i]['icon_secret'] = '<img src="'.$latest_skin_url.'/img/icon_secret.gif" alt="비밀글">';

                }

 

            }

 

            $list[$i]['bo_table'] = $row['bo_table'];

            $list[$i]['href'] = G5_BBS_URL.'/board.php?bo_table='.$row['bo_table'].'&amp;wr_id='.$row2['wr_id'].$comment_link;

            $list[$i]['datetime'] = $datetime;

            $list[$i]['datetime2'] = $datetime2;

            $list[$i]['bo_subject'] = ((G5_IS_MOBILE && $row['bo_mobile_subject']) ? $row['bo_mobile_subject'] : $row['bo_subject']);

            $list[$i]['wr_subject'] = conv_subject($row2['wr_subject'], $subject_len, '…');

        }

 

        if($cache_fwrite) {

            $handle = fopen($cache_file, 'w');

            $cache_content = "<?php\nif (!defined('_GNUBOARD_')) exit;\n\$list=".var_export($list, true)."?>";

            fwrite($handle, $cache_content);

            fclose($handle);

        }

    }

 

    ob_start();

    include $latest_skin_path.'/latest.skin.php';

    $content = ob_get_contents();

    ob_end_clean();

 

    return $content;

}

?>

 

호출할때는

<?php echo new_latest('theme/new_latest', 10, 30, false, 5); ?>

 

위 부분을 어떻게 수정해야 내 글만 호출할수있을까요??

|

답변 3개

채택된 답변
+20 포인트

1)

Copy
global $g5;

->

Copy
global $g5;
global $member;
$mb_id = $member['mb_id'];

 

2.

Copy
$sql_order = " order by a.bn_id desc ";

->

Copy
$sql_common .= " and a.mb_id = '{$mb_id}' ";

$sql_order = " order by a.bn_id desc ";

저는 실패했지만 ㅠㅠ 다들 감사합니다.

가능하면 캐시 파일을 _id 값으로 파일을 생성하면 좋긴 하나 아무래도 용량을 많이 쌓일수 있기에 캐시 파일을 안쓰고 해당 id 기준으로 로그인한 회원 아이디 값을 가져와서

 

$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b where a.bo_table = b.bo_table and b.bo_use_search = 1 and b.mb_id='회원아이디' ";
 

값으로 인식되도록 수정 처리해 주셔야 합니다.

답변을 작성하려면 로그인이 필요합니다.