게시판 게시글이 삭제가 자주 되어 자동으로 카운터 조정하는 방법은 없나요?

게시판 게시글이 삭제가 자주 되어 자동으로 카운터 조정하는 방법은 없나요?

QA

게시판 게시글이 삭제가 자주 되어 자동으로 카운터 조정하는 방법은 없나요?

답변 3

본문

운영자가 목록을 보면 자동으로 카운터 조정하는 방법은 없나요?

 

sql 쿼리식을 모르겠어요

 

이 질문에 댓글 쓰기 :

답변 3

참고만 해 보세요.

 

<?php
include_once($_SERVER['DOCUMENT_ROOT'] ."/common.php");

 

$sql="select count(*) as cnt from `{$g5['board_table']}`";
$res=sql_fetch($sql);
$b_count=(int)$res['cnt'];

$b_qry="select bo_table,bo_subject from `{$g5['board_table']}`";
$b_result=sql_query($b_qry);

$j=1;
for($i=0; $row=sql_fetch_array($b_result); $i++) {
$b_count_qry="select count(*) as cnt from ". $g5['write_prefix'].$row['bo_table'];
$b_count_qry .=" where wr_is_comment='0'";
$b_count_result=sql_query($b_count_qry);

$rows=sql_fetch_array($b_count_result);

$board_update_qry=" update g5_board set ";
$board_update_qry .=" bo_count_write='". $rows['cnt']."'";
$board_update_qry .=" where bo_table='". $row['bo_table'] ."'";
sql_query($board_update_qry);
$j++;
}
?>

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 28
© SIRSOFT
현재 페이지 제일 처음으로