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
|
<?php include_once("./_common.php");
//$cust_info = customer_info_get($id_ccode); // 회원 정보 가져오기 $cust_info = $cinfo;
$qa_email = $cust_info['email'];
?> <form name='1n1_reg_form' id='1n1_reg_form' method='post' action=''> <input type='hidden' name='qstr' value=''> <input type='hidden' name='code' value='<?php echo $idx;?>'> <input type='hidden' name='pcode' value='<?php echo $code;?>'>
<!-- 글쓰기 --> <fieldset class="p15_0 separate_line"> <legend class="screen_out">문의하기</legend> <section class="p0_10 "> <h2 class="pb10 txt14 normal black_line_b">고객님께서 문의하신 내용의 답변은 <em class="custom1 bold">[마이페이지] - 1:1문의</em>에서 확인이 가능합니다.</h2> <div class="mt7 pb10 bg_white"> <dl class="mb5"> <dt class="height24 txt14 align_l bold l_height24">작성자</dt> <dd><input type="text" name='qa_name' value='<?php echo $id_cname;?>' class="mr5 pl10 width_96 height35 gray_line bg_gray input_readonly"></dd> </dl> <dl class="mb5"> <dt class="height24 txt14 align_l bold l_height24">이메일</dt> <dd><input type="text" name='qa_email' value="<?php echo $qa_email;?>" class="mr5 pl10 width_96 height35 gray_line bg_gray"></dd> </dl> <dl class="mb5"> <dt class="height24 txt14 align_l bold l_height24"><img src="<?php echo $j3_url;?>/img/mobile/ico_join.png" alt="필수" class="height24">문의제목</dt> <dd><input type="text" name='qa_subject' placeholder="<?php echo $cinfo['qa_subject'];?>" class="mr5 pl10 width_96 height35 gray_line"></dd> </dl> <dl class="mb5"> <dt class="height24 txt14 align_l bold l_height24"><img src="<?php echo $j3_url;?>/img/mobile/ico_join.png" alt="필수" class="height24">문의내용</dt> <dd> <textarea class="p5 width_96 s_height250 gray_line" name='qa_content' id='qa_content' ><?php echo $cinfo['qa_content'];?></textarea> </dd> </dl> </div> </section>
<!--<div class="p15_0 p0_10 height37 bg_gray"> <a class="block float_l width_49 height35 custom1 txt14 align_c l_height35 bg_white custom_line1 qa_cancel_class">취소하기</a> <a class="block float_r width_49 height37 white txt14 align_c l_height37 bg_custom1 qa_save_class">문의하기</a> </div>--> </fieldset> </form> <script> $(function(){ }); </script>
|