ÿØÿà 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/toadmin/design/ |
Upload File : |
<?php include "../include/top_iframe.html"; //include "_common.php"; if($footerIconLinkID){ $data = getFooterIconData($footerIconLinkID); $lang = $data['lang']; } $submitWord = "저장"; if($footerIconLinkID){ $submitWord = "수정"; } ?> <link type="text/css" rel="stylesheet" href="/toadmin/css/admin_default_ko.css" /> <link type="text/css" rel="stylesheet" href="/toadmin/css/admin_default_cn.css" /> <link type="text/css" rel="stylesheet" href="/toadmin/css/admin_default_en.css" /> <style> .close { text-indent: -99em; overflow: hidden; } .ui-button-icon-only { width: 2em; box-sizing: border-box; text-indent: -9999px; white-space: nowrap; } .ui-dialog-titlebar-close { visibility: hidden; } </style> <div class="iframe ma0"> <div class="popbox"> <!-- 본문 --> <!-- 폼 --> <form name="frm_write" id="frm_write" method="post" enctype="multipart/form-data"> <input type="hidden" name="SqlType" value="<?=(($footerIconLinkID) ? 'footerIcon_edit' : 'footerIcon_ins')?>"> <?php if($footerIconLinkID){ ?> <input type="hidden" name="footerIconLinkID" value="<?=$footerIconLinkID?>" /> <?php } ?> <input type="hidden" name="lang" value="<?=$lang?>"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="setting_write"> <tbody> <tr> <th>아이콘 이미지*</th> <td> <input type="file" name="img" id="img" value="" class="input_text" <?=(($footerIconLinkID) ? '' : 'required')?> /> </td> </tr> <?php if($lang == 'ko'){ ?> <tr> <th scope="row">URL*</th> <td><input type="text" name="link" id="link" value="<?=$data['link']?>" class="input_text" style="width:95%" required/></td> </tr> <tr> <th width="20%" scope="row">링크명*</th> <td><input type="text" name="linkName" id="linkName" value="<?=$data['linkName']?>" style="width:95%;" class="input_text" hname="링크명" required /></td> </tr> <?php }else{ ?> <tr> <th scope="row">URL*(번체)</th> <td><input type="text" name="linkHk" id="linkHk" value="<?=$data['linkHk']?>" class="input_text" style="width:95%" required/></td> </tr> <tr> <th scope="row">URL*(간체)</th> <td><input type="text" name="linkCn" id="linkCn" value="<?=$data['linkCn']?>" class="input_text" style="width:95%" required/></td> </tr> <tr> <th scope="row">URL*(영어)</th> <td><input type="text" name="linkEn" id="linkEn" value="<?=$data['linkEn']?>" class="input_text" style="width:95%" required/></td> </tr> <tr> <th width="20%" scope="row">링크명*(번체)</th> <td><input type="text" name="linkNameHk" id="linkNameHk" value="<?=$data['linkNameHk']?>" style="width:95%;" class="input_text" hname="링크명 번체" required /></td> </tr> <tr> <th width="20%" scope="row">링크명*(간체)</th> <td><input type="text" name="linkNameCn" id="linkNameCn" value="<?=$data['linkNameCn']?>" style="width:95%;" class="input_text" hname="링크명 간체" required /></td> </tr> <tr> <th width="20%" scope="row">링크명*(영어)</th> <td><input type="text" name="linkNameEn" id="linkNameEn" value="<?=$data['linkNameEn']?>" style="width:95%;" class="input_text" hname="링크명 영어" required /></td> </tr> <?php } ?> </tbody> </table> <div class="btn_wrap_C mt30 mb30"> <a href="javascript:;" class="Bbtn red" onClick="check_frm();"><?=$submitWord?></a> </div> </form> <!-- /폼 --> <!-- /본문 --> </div> </div> <script Language="javascript"> function check_frm() { var f=document.frm_write; // 폼체크 var result = to_validation(f); if (result == false) return false; if(!confirm("<?=$submitWord?>하시겠습니까?")) return false; f.action = "footer_icon_proc.php"; f.submit(); } </script> <?include "../include/footer_iframe.html";?>