폼메일 한글로 된것을 영문으로 수정을 하였는데요. 채택완료
여행아
10년 전
조회 2,107
/skin/member/basic/formmail.skin.php
여기서 한글로 된것을 영문으로 수정을 하였는데요.
PC에서는 영문으로 보이는데
모바일에서는 한글로만 보입니다.
수정한 영문으로 보여지게 할수 없을까요?
이 폼메일을 아이프레임으로 불러오고 있어요.
</p><p><?php</p><p>if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가</p><p> </p><p>// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨</p><p>add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);</p><p>?></p><p> </p><p><!-- 폼메일 시작 { --></p><p><div id="formmail" class="new_win mbskin"></p><p> <h1 id="win_title">WBS Corporation</h1></p><p> </p><p> <form name="fformmail" action="./formmail_send.php" onsubmit="return fformmail_submit(this);" method="post" enctype="multipart/form-data" style="margin:0px;"></p><p> <input type="hidden" name="to" value="<?php echo $email ?>"></p><p> <input type="hidden" name="attach" value="2"></p><p> <input type="hidden" name="token" value="<?php echo $token ?>"></p><p> <?php if ($is_member) { // 회원이면 ?></p><p> <input type="hidden" name="fnick" value="<?php echo $member['mb_nick'] ?>"></p><p> <input type="hidden" name="fmail" value="<?php echo $member['mb_email'] ?>"></p><p> <?php } ?></p><p> </p><p> <div class="tbl_frm01 tbl_form"></p><p> <table></p><p> <caption>E-MAIL</caption></p><p> <tbody></p><p> <?php if (!$is_member) { ?></p><p> <tr></p><p> <th scope="row"><label for="fnick">NAME<strong class="sound_only">necessariness </strong></label></th></p><p> <td><input type="text" name="fnick" id="fnick" required class="frm_input required"></td></p><p> </tr></p><p> <tr></p><p> <th scope="row"><label for="fmail">E-MAIL<strong class="sound_only">necessariness </strong></label></th></p><p> <td><input type="text" name="fmail" id="fmail" required class="frm_input required"></td></p><p> </tr></p><p> <?php } ?></p><p> <tr></p><p> <th scope="row"><label for="subject">TITLE<strong class="sound_only">necessariness </strong></label></th></p><p> <td><input type="text" name="subject" id="subject" required class="frm_input required"></td></p><p> </tr></p><p> <tr></p><p> <th scope="row">FORM</th></p><p> <td></p><p> <input type="radio" name="type" value="0" id="type_text" checked> <label for="type_text">TEXT</label></p><p> <input type="radio" name="type" value="1" id="type_html"> <label for="type_html">HTML</label></p><p> <input type="radio" name="type" value="2" id="type_both"> <label for="type_both">TEXT+HTML</label></p><p> </td></p><p> </tr></p><p> <tr></p><p> <th scope="row"><label for="content">CONTENT<strong class="sound_only">necessariness </strong></label></th></p><p> <td><textarea name="content" id="content" required class="required"></textarea></td></p><p> </tr></p><p> <tr></p><p> <th scope="row"><label for="file1">FILE 1</label></th></p><p> <td></p><p> <input type="file" name="file1" id="file1" class="frm_input"></p><p> <!-- 첨부 파일은 누락될 수 있으므로 메일을 보낸 후 파일이 첨부 되었는지 반드시 확인해 주시기 바랍니다. --></p><p> </td></p><p> </tr></p><p> <tr></p><p> <th scope="row"><label for="file2">FILE 2</label></th></p><p> <td><input type="file" name="file2" id="file2" class="frm_input"></td></p><p> </tr></p><p> <tr></p><p> <th scope="row">NECESSARINESS</th></p><p> <td><?php echo captcha_html(); ?></td></p><p> </tr></p><p> </tbody></p><p> </table></p><p> </div></p><p> </p><p> <div class="win_btn"></p><p> <input type="submit" value="SEND" id="btn_submit" class="btn_submit"></p><p> <button type="button" onclick="window.close();">CLOSE</button></p><p> </div></p><p> </p><p> </form></p><p></div></p><p> </p><p><script></p><p>with (document.fformmail) {</p><p> if (typeof fname != "undefined")</p><p> fname.focus();</p><p> else if (typeof subject != "undefined")</p><p> subject.focus();</p><p>}</p><p> </p><p>function fformmail_submit(f)</p><p>{</p><p> <?php echo chk_captcha_js(); ?></p><p> </p><p> if (f.file1.value || f.file2.value) {</p><p> // 4.00.11</p><p> if (!confirm("첨부파일의 용량이 큰경우 전송시간이 오래 걸립니다.\n\n메일보내기가 완료되기 전에 창을 닫거나 새로고침 하지 마십시오."))</p><p> return false;</p><p> }</p><p> </p><p> document.getElementById('btn_submit').disabled = true;</p><p> </p><p> return true;</p><p>}</p><p></script></p><p><!-- } 폼메일 끝 --></p><p>
댓글을 작성하려면 로그인이 필요합니다.
답변 1개
답변을 작성하려면 로그인이 필요합니다.
로그인
감사합니다. (__)