ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/admin/member/ |
Upload File : |
<? include "../include/top_iframe.html"; include "_common.php"; // 상담 데이터 $data_consult= db_fetch("select * from TB_MEMBER_CONSULT where con_seq='{$con_seq}'"); extract($data_consult); // 담당자 $admin_arr = member_fetch(" and mb_level <= 10 and del_flag='N' "); ?> <p class="pt10"><p> <div class="iframe" style="margin:0;"> <!-- 본문 --> <!--2022-01-04 장진혁--> <form name="frm_mb_consult" id="frm_mb_consult" action="member_proc.php" method="post"> <input type="hidden" name="SqlType" value="mb_consult_edit"> <input type="hidden" name="con_seq" value="<?=$con_seq?>"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="t_register"> <colgroup> <col width="10%" /> <col width="23%" /> <col width="10%" /> <col width="23%" /> <col width="10%" /> <col width="24%" /> </colgroup> <tbody> <tr style="border-top:1.2px solid #777"> <th class="line_l"><label for="ins_dt">상담일시</label></th> <td><input type="text" name="ins_dt" id="ins_dt" class="input_text tlc" style="width:154px;" value="<?=$ins_dt?>" readonly></td> <th class="line_l"><label for="gubun">상담구분</label></th> <td> <select name="gubun"> <option value="">==선택==</option> <option value="TEL" <?=($gubun=='TEL')?'selected':'';?>>전화문의</option> <option value="SNS" <?=($gubun=='SNS')?'selected':'';?>>SNS문의</option> <option value="EMAIL" <?=($gubun=='EMAIL')?'selected':'';?>>이메일문의</option> </select> </td> <th><label for="agent_corp_nm">담당자</label></th> <td> <select name="ins_id" id="ins_id" style="width:167px;"> <option value="">==선택==</option> <? for($i=0 ; $i < count($admin_arr) ; $i++){ $arr = $admin_arr[$i]; ?> <option value="<?=$arr['mb_id']?>" <?=($arr['mb_id']==$ins_id)?"selected":""?>><?=$arr['mb_nm']?></option> <?}?> </select> </td> </tr> <tr> <th><label for="con_content">상담내용</label></th> <td colspan="5"><textarea name="con_content" style="width:100%; height:100px;" /><?=$con_content?></textarea></td> </tr> </tbody> </table> <div style="width:100px; margin:0 auto; margin-top:15px;"> <input type="button" value="수정" class="Table_btn gray" style="width:100px;" onclick="update_frm();"> </div> </form> <!-- /폼 --> <script type="text/javascript"> function update_frm() { var f=document.frm_mb_consult; if(!confirm("수정하시겠습니까?")) return false; ajax_post("","member_proc.php","frm_mb_consult"); } </script> <? include "../include/footer_iframe.html"; ?>