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
|
<? include("./_common.php"); include("category/common.php");
if($exCode == "alldel"){ for ($i = 0; $i < count( $develForm ); $i++) {
$sel = "select * from mBoard_withdraw where userid = '$develForm[$i]' "; $row = mysql_fetch_array(mysql_query($sel));
$alldel = " delete from mBoard_withdraw where userid = '$develForm[$i]' "; MYSQL_QUERY($alldel);
admin_psn_log($develForm[$i],$row, $new_info); // °èÁ¤ ¸»¼Ò } ?> <script> parent.location.href = 'withdrawBoard.php?menu=<?=$menu?>&sub=<?=$sub?>'; </script> <? } else if($exCode == "result"){ $sql = "update mBoard_withdraw set result = '$val' where uid = '$uid'"; mysql_query($sql); ?> <script> parent.location.href = 'withdrawBoard.php?menu=<?=$menu?>&sub=<?=$sub?>'; </script> <? } ?>
|