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
|
<? session_start(); ?> <? if(( $id == "" ) && ( $sid == "" )) { ?> <script> alert("e¼ö¹ßÁÖ ·Î±×ÀÎ ÈÄ¿¡ À̿밡´ÉÇÕ´Ï´Ù."); location.href = "../onlinecs/intro.php"; </script> <? }
include("../onlinecs/commonST.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 = "buy.php?uid=<?=$maxordno?>&detail=y&txtdate=<?=$txtdate?>&txtdate2=<?=$txtdate2?>"; //ºÎ¸ðâ »õ·Î°íħ </script>
|