[g5] 최근게시물 다시 작성하기.
페이지 정보
본문
최근게시글을 지우고 다시 작성해야 할때 사용합니다.
<?php
$sub_menu = "100510";
include_once('./_common.php');
auth_check($auth[$sub_menu], 'r');
$g5['title'] = '최근게시물삽입';
include_once('./admin.head.php');
// new delete
mysql_query("truncate table {$g5['board_new_table']}");
// new insert
$qry = "select * from {$g5['board_table']}";
$result = mysql_query($qry);
while($row = mysql_fetch_array($result))
{
$qry2 = "select wr_id, wr_parent, mb_id, wr_datetime from g5_write_$row[bo_table]";
$result2 = mysql_query($qry2);
while($row2 = mysql_fetch_array($result2))
{
mysql_query("insert into {$g5['board_new_table']} ( bo_table, wr_id, wr_parent, bn_datetime, mb_id) values ( '{$row['bo_table']}', '{$row2['wr_id']}', '{$row2['wr_parent']}', '{$row2['wr_datetime']}', '{$row2['mb_id']}' )");
}
}
echo "confirm_ok";
?>
<?php
include_once('./admin.tail.php');
?>
댓글목록
등록된 댓글이 없습니다.