/home/mjc1/public_html/manage/install_reqBoardDel.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?   
header
("Content-type:text/html;charset=euc-kr"); 
    include(
"./_common.php");
 include(
"../manage/category/common.php");
   
 if(
$exCode == "alldel"){  ////////  ¼±ÅûèÁ¦

        
$admin_info admin_member_info();
        if(
$admin_info['psn_auth']=='0' || substr($admin_info['psn_rwed'],3,1)=='0'){
            echo 
"<script>alert('ÇØ´ç »èÁ¦±ÇÇÑÀÌ ¾ø½À´Ï´Ù.');window.history.go(-1);</script>"; exit;
        }
    
     for (
$i 0$i count$consultForm ); $i++) { 

      
$alldel   =  " delete from mBoard_install_req where uid = '$consultForm[$i]' ";  
     
// echo $alldel; exit;
                         
MYSQL_QUERY($alldel);
       }

       
auth_access_log("DEL");

       
?>

<script>
  location.href = "install_reqBoard.php";
</script>

<?
  
}
  
?>