ÿØÿà 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/intra/ |
Upload File : |
<? /** * 일정표 관리 * * 작성일 : 20140228.허종 */ include "../include/top_iframe.html"; if($SqlType=="sch_updt") { $sql = "select * from TB_MEMBER_SCHEDULE where seq='{$seq}' "; $row = db_fetch($sql); } ?> <div class="iframe ma0"> <div class="popbox"> <!-- 본문 --> <!-- 폼 --> <form name="frm_write" id="frm_write" method="post"> <input type="hidden" name="SqlType" value="<?=$SqlType?>"> <input type="hidden" name="tmp_layer_id" value="<?=$tmp_layer_id?>"><!-- 레이어ID --> <INPUT TYPE="hidden" NAME="t_date" value="<?=$t_date?>"> <INPUT TYPE="hidden" NAME="seq" value="<?=$row['seq']?>"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="setting_write"> <tbody> <tr> <th>날짜</th> <td class="top_line" > <input type="text" name="t_date" value="<?=($SqlType=="sch_ins") ? $t_date:$row['t_date']?>" class="cal_input" readonly hname="날짜" required onClick="AjaxCal(this,event);" /> </td> </tr> <tr> <th>제목</th> <td><input type="text" name="title" value="<?=$row['title']?>" class="input_text" style="ime-mode:active;width:95%;" hname="제목" required /></td> </tr> <tr> <th>내용</th> <td> <TEXTAREA NAME="cont" hname="내용" style="width:95%; height:100px;" required><?=$row['cont']?></TEXTAREA> </td> </tr> <tr> <th>작성자</th> <td><?=($SqlType=="sch_updt")?$row['admin_nm']:$TK_MEMBER['mb_nm']?></td> </tr> <?if($SqlType=="sch_updt") {?> <tr> <th>작성일</th> <td><?=$row['ins_dt']?></td> </tr> <tr> <th>수정일</th> <td><?=$row['edit_dt']?></td> </tr> <?}?> </body> </table> <div class="btn_wrap_C mt30"> <a href="javascript:;" class="Bbtn red" onClick="check_frm();">저장</a> <?if($SqlType=="sch_updt") {?> <a href="javascript:;" class="Bbtn gray" onClick="if(!confirm('정말삭제하시겠습니까?'))return;location.href='schedule_proc.html?SqlType=sch_del&seq=<?=$seq?>';">삭제</a> <?}?> </div> </form> <!-- /폼 --> <!-- /본문 --> </div> </div> <script type="text/javascript"> function check_frm() { var f=document.frm_write; // 폼체크 var result = to_validation(f); if (result == false) return false; if(!confirm("저장하시겠습니까?")) return false; ajax_post("","schedule_proc.html","frm_write"); } </script> <? include "../include/footer_iframe.html"; ?>