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
34
35
36
37
38
39
40
41
42
43
|
<? header("Content-type:text/html;charset=euc-kr"); @extract($_REQUEST); // include Á¤ÀÇ //include_once("dbconnect.php"); // DB Connect Information
?> <html> <head> <meta charset="euc-kr"> <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=0,maximum-scale=10"> <script language='javascript' src="../html/millennium/js/jquery-1.7.2.min.js"></script> <style> input { border:1px solid #999;} input[type='button'] {width:80px;height:40px;} .sms_stop { width:100%; border:2px solid #e0e0e0;} .sms_stop td { text-align:center;} </style> <script> function sms_go(){ if($("input[name='secret_code']").val()==''){ alert('º¸¾ÈÄڵ带 ÀÔ·ÂÇϼ¼¿ä.'); return; } document.sms_form.submit(); } </script> </head> <form name='sms_form' method='post' action='sms_stop_proc.php'> <input type='hidden' name='id' value='<?=$_GET['id']?>'> <table class='sms_stop'> <tr> <td height=60px;>º¸¾È¹øÈ£</td> <td><input type='text' name='secret_code' value=''></td> </tr> <tr> <td colspan=2><input type='button' value='Â÷´Ü' onclick='sms_go();'></td> </tr> </table> </form> <body> </body> </html>
|