AvocadoAmber/AvocadoEdition_Light/bbs/board_list_update.php

21 lines
506 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:07:19 +09:00
include_once "./_common.php";
2022-09-17 20:50:50 +09:00
$count = count($_POST['chk_wr_id']);
2024-09-19 20:57:39 +09:00
if (!$count) {
alert($_POST['btn_submit'] . ' 하실 항목을 하나 이상 선택하세요.');
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:57:39 +09:00
if ($_POST['btn_submit'] == '선택삭제') {
include './delete_all.php';
} else if ($_POST['btn_submit'] == '선택복사') {
$sw = 'copy';
include './move.php';
} else if ($_POST['btn_submit'] == '선택이동') {
$sw = 'move';
include './move.php';
2022-09-17 20:50:50 +09:00
} else {
2024-09-19 20:57:39 +09:00
alert('올바른 방법으로 이용해 주세요.');
2022-09-17 20:50:50 +09:00
}