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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php include("./_common.php");
// DBÁ¢¼Ó $DB_HOST = "114.108.136.196"; $DB_USER = "mj_inhouse_web"; $DB_PWD = "m897461z"; $DB_NAME = "mj_inhouse";
$connect_web2 = @mysql_connect($DB_HOST,$DB_USER,$DB_PWD); @mysql_select_db( $DB_NAME,$connect_web2);
if($seq!=''){ $sql = " SELECT t.*, c.ceo_confirm FROM jangbu_tellist AS t LEFT JOIN jangbu_tellist_confirm AS c ON t.seq = c.seq WHERE t.cate = '°í°´ºÒ¸¸' AND t.seq = $seq "; //echo $sql; $res = mysql_query($sql,$connect_web2); if(!$res){echo mysql_error();} $info = mysql_fetch_array($res); } ?>
<form name='qatxt_reg_form' id='qatxt_reg_form' method='post' action='m_cusafter_process.php' enctype='multipart/form-data'> <input type='hidden' name='qstr' value='<?php echo $qstr;?>'> <input type='hidden' name='code' value='<?php echo $info['seq'];?>'> <input type='hidden' name='qatxt_reg' value=''>
<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><?php echo $info['sdate'];?></td> </tr> <tr> <th>»ó´ã ½ÃÀ۽ð£</th> <td><?php echo $info['stime'];?></td> <th>»ó´ã Á¾·á½Ã°£</th> <td><?php echo $info['etime'];?></td> </tr> <tr> <th>°í°´ ¿¬¶ôó</th> <td colspan=3><?php echo $info['stel'];?></td> </tr> <tr> <th>»óÈ£¸í</th> <td colspan=3><?php echo $info['cname'];?></td> </tr> <tr> <th>´ã´çÀÚ</th> <td colspan=3><?php echo $info['sdam'];?></td> </tr> <tr> <th>ºÐ·ù</th> <td colspan=3><?php echo $info['cate'];?></td> </tr> <tr> <th>ºÒ¸¸ºÐ·ù</th> <td colspan=3><?php echo $info['cate2'];?></td> </tr> <tr> <th>³»¿ë</th> <td colspan=3><?php echo $info['bigo'];?></td> </tr> <tr> <th>»çÀå´Ô È®Àγ»¿ë</th> <td colspan=3><TEXTAREA NAME="ceo_confirm" style='width:500px;height:150px;'><?php echo stripslashes($info['ceo_confirm']);?></TEXTAREA></td> </tr> </table> </div> </form> <script> $(function(){ $(".colorBox input").click(function(){ var val1 = $("#subject").val(); var val2 = val1+"<font color="+$(this).val()+"></font>"; $("#subject").val(val2); }); }); </script>
|