1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<? @session_start(); include("./_common.php"); include("category/common.php");
if($_GET['exCode'] == "alldel"){ //////// 선택삭제
$alldel = " delete from mBoard_dealer where d_num = '{$_GET['d_num']}' "; echo $alldel; mysql_query($alldel); echo mysql_error(); auth_access_log("DEL"); } ?> <script> parent.location.reload(); </script>
|