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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php $dir = "."; include_once($dir."/_common.php"); ?> <style> .cust_modal1, .cust_modal2 { border:0px solid #e1e1e1; width:700px; padding:10px; font-size:13px } .cust_modal1 h4, .cust_modal2 h4 { position:relative; top:-5px; font-size:14px; font-weight:bold; } .cust_modal2 { margin-top:0px; } .table-top-border tbody { border-top:1px solid #e1e1e1;} .cust_modal1 table tbody td, .cust_modal2 table tbody td { text-align:left; padding-left:5px; } .cust_modal1 table tbody td input, .cust_modal2 table tbody td input{ border:1px solid #e9e9e9; } .input_readonly {background:#E9E9E9; } .width_80 { width:80px !important; } .width_120 { width:120px !important; } </style> <form name='sendcost_reg_form' method='post' action=''> <input type='hidden' name='qstr' value=''> <input type='hidden' name='code' value='<?php echo $cinfo['code'];?>'>
<div class='cust_modal1'> <h4>기본정보</h4> <table class="order-sheet table-top-border"> <caption class="screen_out">기본정보</caption> <colgroup> <col style="width:100px;"><col style="width:200px;"> <col style="width:100px;"><col style="width:200px;"> </colgroup>
<tbody> <tr> <th>우편번호 지역명</th> <td colspan=3><input type='text' name='sc_name' class='width_500' value='<?php echo $cinfo['sc_name'];?>'></td> </tr> <tr> <th>우편번호 시작</th> <td colspan=3><input type='text' name='sc_zip1' class='width_100' value='<?php echo $cinfo['sc_zip1'];?>'> <span class='help_info'>(입력 예 : 50360)</span></td> </tr> <tr> <th>우편번호 끝</th> <td colspan=3><input type='text' name='sc_zip2' class='width_100' value='<?php echo $cinfo['sc_zip2'];?>'> <span class='help_info'>(입력 예 : 50360)</span></td> </tr> <tr> <th>추가배송비</th> <td colspan=3><input type='text' name='sc_price' class='width_100' value='<?php echo $cinfo['sc_price'];?>'>원</td> </tr> </table> <?php if($code==''){?> <!--<p style='padding-top:10px;'><input type='checkbox' name='after_add' value='1'> 계속 저장</p>--> <?php }?> </div> </form> <script> $(function(){
}) </script>
|