AvocadoAmber/AvocadoEdition_Light/skin/board/character/proc/del_body.php

26 lines
647 B
PHP
Raw Normal View History

2024-09-19 20:50:29 +09:00
<?php
2024-09-23 11:07:19 +09:00
include_once "./_common.php";
// 권한 확인
2024-09-23 11:41:22 +09:00
if (!$is_admin) {
if ($member['mb_id'] && $write['mb_id'] == $member['mb_id']) {
exit;
} else if ($member['mb_level'] < $board['bo_write_level']) {
exit;
}
}
$update_href = true;
// 삭제 원하는 DB 정보 가져오기
$bd = sql_fetch("select * from {$g5['character_body_table']} where bd_id = '{$bd_id}'");
2024-09-23 11:41:22 +09:00
if ($bd['bd_url']) {
$prev_file_path = str_replace(G5_URL, G5_PATH, $bd['bd_url']);
@unlink($prev_file_path);
2024-09-23 11:41:22 +09:00
$sql = "delete from {$g5['character_body_table']} where bd_id = '{$bd_id}'";
sql_query($sql);
}
2024-09-23 11:41:22 +09:00
include $board_skin_path . "/view_body.skin.php";