특정게시판 내가 작성한 글만 볼 수 있도록..
본문
/bbs/board.php 파일을 수정 하였습니다.
if (!$is_admin) {
if ($bo_table=="com04" || $bo_table =="com05" ) {
$sfl = 'mb_id';
$stx = $member['mb_id'];
}
}
또는
if (!$is_notice && !$is_admin && in_array($bo_table, array('com04', 'com05'))){
$sfl = 'mb_id';
$stx = $member['mb_id'];
}
근데 공지 사항은 출력을 하고 싶습니다. 어디를 수정해야 하나요?? ㅠㅠ 공지사항은 무조건 필수노출? 이라고 해야할까여~
!-->!-->답변 2
위에 코드까지되어있으니 리스트에 제목을 뿌릴때 작성자와 $stx를 비교하시어 같으면 출력
처음 코드로 하되 공지 리스트 만드는 부분 바로 위에다 추가하세요(// 공지 처리 <--이 주석 있는 곳)
if($sfl == 'mb_id' && $stx == $member['mb_id']) $is_search_bbs = false;
아래 처럼 수정도 해야겠습니다
if ($is_search_bbs) {
$sql = " select distinct wr_parent from {$write_table} where {$sql_search} {$sql_order} limit {$from_record}, $page_rows ";
} else {
~~~
위 코드 if 윗줄에 추가
if($sfl == 'mb_id' && $stx == $member['mb_id']) $is_search_bbs = true;
답변을 작성하시기 전에 로그인 해주세요.