1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php include("category/common.php");
if($mode=='mod'){ if($uid!='' && $status!=''){ $sql = "update mBoard_event set status = '$status' where uid = '$uid' "; mysql_query($sql);
?> <script> alert('º¯°æµÇ¾ú½À´Ï´Ù.'); location.href='eventBoard.php?menu=<?php echo $menu;?>&sub=<?php echo $sub;?>&pg=<?php echo $pg;?>'; </script> <?php } }
?>
|