스크립트/제로보드 관련
[제로보드 4]해당 게시물의 댓글 전체삭제하기
Font_Charisma
2010. 5. 26. 17:48
<?
include "_head.php";
$id ="게시판이름"; // 게시판 id 기재
$result = mysql_query("select * from $t_board"."_$id");
while($data=mysql_fetch_array($result)) {
@mysql_query("delete from $t_comment"."_$id where parent='{$data['no']}'");
@mysql_query("update $t_board"."_$id set total_comment='0' where no='{$data['no']}'") or error(mysql_error());
}
echo "삭제가 완료되었습니다.";
?>
단, 게시판의 전체 댓글이 모두 삭제됩니다.
해당 제로보드 게시판 안에 -> 제로보드/파일.php
파일명으로 실행해보세요.