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
|
<? session_start(); ?> <?php include_once("_common.php");?> <? $admin = str_replace("admin+","",$adminid); include("../onlinecs/commonSTADMIN.php");
?> <? //»ó´Ü³»¿ª»èÁ¦ $tdqry = "DELETE FROM ordbook_m WHERE ordno = '$uid'"; mysql_query($tdqry);
//»ó¼¼³»¿ª»èÁ¦ $tdqry = "DELETE FROM ordbook_d WHERE ordno = '$uid'"; mysql_query($tdqry);
$mqry = "SELECT max(ordno) AS maxordno FROM ordbook_m"; $mresult = mysql_query($mqry); $mrow = mysql_fetch_array($mresult); $maxordno = $mrow[maxordno];
?> <script language="javascript"> parent.alert('Àüü»èÁ¦ µÇ¾ú½À´Ï´Ù.'); parent.location.href = "adminbuy.php?uid=<?=$maxordno?>&detail=y&txtdate=<?=$txtdate?>&txtdate2=<?=$txtdate2?>"; //ºÎ¸ðâ »õ·Î°íħ </script>
|