게시판 '내용을 입력하세요' 오류 문의드립니당
본문
게시판에 작성 후 내용을 입력하세요라고 떠요 ㅠㅠ
아직 코딩초보라 어디가 잘못된건지 아무리봐도 모르겠어요!
자세히 알려주실 수 있는 분 계시면 정말 감사하겠습니당ㅠㅠ
https://jysolution.gabia.io/bbs/write.php?bo_table=esg
list.skin.php
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
$tNum="ESG";
$sNum="ESG 온라인상담";
$g5['title'] = "";
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
include_once(G5_THEME_PATH.'/sub_head.php');
?>
<?php
if (!defined("_INDEX_") && !defined("_NOVISUAL_")){ ?>
<div class="sub_visual" style="background:url('/theme/jysolution/img/subvisual<?=$topmenu_tNum[$tNum]?>.png')">
<div class="sub_top_text">
<h3><?php echo $tNum ?></h3>
</div>
</div>
<div class="lnb_wrap">
<?php include_once(G5_THEME_PATH.'/mildmap.php'); ?>
</div>
<?php }
?>
<!-- 게시판 목록 시작 { -->
<div id="bo_list" style="width:<?php echo $width; ?>" class="width common">
<div class="board_title wow fadeInup" data-wow-duration="1s">
</div>
<?php if ($write_href) { ?><a href="<?php echo $write_href ?>" class="bo_individual" title="글쓰기"><span class="view_btn">ESG 온라인상담하기</span></a><?php } ?>
<!-- 게시판 카테고리 시작 { -->
<?php if ($is_category) { ?>
<nav id="bo_cate">
<h2><?php echo $board['bo_subject'] ?> 카테고리</h2>
<ul id="bo_cate_ul">
<?php echo $category_option ?>
</ul>
</nav>
<?php } ?>
<!-- } 게시판 카테고리 끝 -->
<form name="fboardlist" id="fboardlist" action="<?php echo G5_BBS_URL; ?>/board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sfl" value="<?php echo $sfl ?>">
<input type="hidden" name="stx" value="<?php echo $stx ?>">
<input type="hidden" name="spt" value="<?php echo $spt ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sst" value="<?php echo $sst ?>">
<input type="hidden" name="sod" value="<?php echo $sod ?>">
<input type="hidden" name="page" value="<?php echo $page ?>">
<input type="hidden" name="sw" value="">
<!-- 게시판 페이지 정보 및 버튼 시작 { -->
<div id="bo_btn_top">
<div id="bo_list_total">
<span>Total <?php echo number_format($total_count) ?>건</span>
<?php echo $page ?> 페이지
</div>
<ul class="btn_bo_user">
<?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin btn" title="관리자"><span class="view_btn">관리자</span></a></li><?php } ?>
<?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01 btn" title="RSS"><i class="fa fa-rss" aria-hidden="true"></i><span class="sound_only">RSS</span></a></li><?php } ?>
<li>
<button type="button" class="btn_bo_sch btn_b01 btn" title="게시판 검색"><span class="view_btn">게시판 검색</span></button>
</li>
<!-- <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b01 btn" title="글쓰기"><span class="view_btn">1:1문의 글쓰기</span></a></li><?php } ?> -->
<?php if ($is_admin == 'super' || $is_auth) { ?>
<li>
<button type="button" class="btn_more_opt is_list_btn btn_b01 btn" title="게시판 리스트 옵션"><i class="fa fa-ellipsis-v" aria-hidden="true"></i><span class="sound_only">게시판 리스트 옵션</span></button>
<?php if ($is_checkbox) { ?>
<ul class="more_opt is_list_btn">
<li><button type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value"><i class="fa fa-trash-o" aria-hidden="true"></i> 선택삭제</button></li>
<li><button type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value"><i class="fa fa-files-o" aria-hidden="true"></i> 선택복사</button></li>
<li><button type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value"><i class="fa fa-arrows" aria-hidden="true"></i> 선택이동</button></li>
</ul>
<?php } ?>
</li>
<?php } ?>
</ul>
</div>
<!-- } 게시판 페이지 정보 및 버튼 끝 -->
<div class="tbl_head01 tbl_wrap">
<table>
<caption><?php echo $board['bo_subject'] ?> 목록</caption>
<thead>
<tr>
<?php if ($is_checkbox) { ?>
<th scope="col" class="all_chk chk_box">
<input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);" class="selec_chk">
<label for="chkall">
<span></span>
<b class="sound_only">현재 페이지 게시물 전체선택</b>
</label>
</th>
<?php } ?>
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col" class="th_people">글쓴이</th>
<th scope="col" class="th_date"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜 </th>
<th scope="col">상태 </th>
</tr>
</thead>
<tbody>
<?php
for ($i=0; $i<count($list); $i++) {
if ($i%2==0) $lt_class = "even";
else $lt_class = "";
?>
<tr class="<?php if ($list[$i]['is_notice']) echo "bo_notice"; ?> <?php echo $lt_class ?>">
<?php if ($is_checkbox) { ?>
<td class="td_chk chk_box">
<input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>" class="selec_chk">
<label for="chk_wr_id_<?php echo $i ?>">
<span></span>
<b class="sound_only"><?php echo $list[$i]['subject'] ?></b>
</label>
</td>
<?php } ?>
<td class="td_num2">
<?php
if ($list[$i]['is_notice']) // 공지사항
echo '<strong class="notice_icon">공지</strong>';
else if ($wr_id == $list[$i]['wr_id'])
echo "<span class=\"bo_current\">열람중</span>";
else
echo $list[$i]['num'];
?>
</td>
<td class="td_subject" style="padding-left:<?php echo $list[$i]['reply'] ? (strlen($list[$i]['wr_reply'])*10) : '0'; ?>px">
<?php
if ($is_category && $list[$i]['ca_name']) {
?>
<a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></a>
<?php } ?>
<div class="bo_tit">
<a href="<?php echo $list[$i]['href'] ?>">
<?php echo $list[$i]['icon_reply'] ?>
<?php
if (isset($list[$i]['icon_secret'])) echo rtrim($list[$i]['icon_secret']);
?>
<?php echo $list[$i]['subject'] ?>
</a>
<span class="tit_icon">
<?php
if ($list[$i]['icon_new']) echo "<span class=\"new_icon\">N<span class=\"sound_only\">새글</span></span>";
// if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }
if (isset($list[$i]['icon_hot'])) echo rtrim($list[$i]['icon_hot']);
if (isset($list[$i]['icon_file'])) echo rtrim($list[$i]['icon_file']);
if (isset($list[$i]['icon_link'])) echo rtrim($list[$i]['icon_link']);
?>
</span>
</div>
</td>
<td class="td_name sv_use"><?php echo $list[$i]['name'] ?></td>
<td class="td_datetime"><?php echo $list[$i]['datetime2'] ?></td>
<td class="td_num"><span class=" <?php echo ($list[$i]['wr_comment'] ? 'txt_done' : 'txt_rdy'); ?>"><?php echo ($list[$i]['wr_comment'] ? '답변완료' : '답변대기'); ?></span></td>
</tr>
<?php } ?>
<?php if (count($list) == 0) { echo '<tr><td colspan="'.$colspan.'" class="empty_table">게시물이 없습니다.</td></tr>'; } ?>
</tbody>
</table>
</div>
<!-- 페이지 -->
<?php echo $write_pages; ?>
<!-- 페이지 -->
</form>
<!-- 게시판 검색 시작 { -->
<div class="bo_sch_wrap">
<fieldset class="bo_sch">
<h3>검색</h3>
<form name="fsearch" method="get">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sop" value="and">
<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
<?php echo get_board_sfl_select_options($sfl); ?>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<div class="sch_bar">
<input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="sch_input" size="25" maxlength="20" placeholder=" 검색어를 입력해주세요">
<button type="submit" value="검색" class="sch_btn"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>
</div>
<button type="button" class="bo_sch_cls" title="닫기"><i class="fa fa-times" aria-hidden="true"></i><span class="sound_only">닫기</span></button>
</form>
</fieldset>
<div class="bo_sch_bg"></div>
</div>
<script>
jQuery(function($){
// 게시판 검색
$(".btn_bo_sch").on("click", function() {
$(".bo_sch_wrap").toggle();
})
$('.bo_sch_bg, .bo_sch_cls').click(function(){
$('.bo_sch_wrap').hide();
});
});
</script>
<!-- } 게시판 검색 끝 -->
</div>
<?php if($is_checkbox) { ?>
<noscript>
<p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p>
</noscript>
<?php } ?>
<?php if ($is_checkbox) { ?>
<script>
function all_checked(sw) {
var f = document.fboardlist;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]")
f.elements[i].checked = sw;
}
}
function fboardlist_submit(f) {
var chk_count = 0;
for (var i=0; i<f.length; i++) {
if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");
return false;
}
if(document.pressed == "선택복사") {
select_copy("copy");
return;
}
if(document.pressed == "선택이동") {
select_copy("move");
return;
}
if(document.pressed == "선택삭제") {
if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))
return false;
f.removeAttribute("target");
f.action = g5_bbs_url+"/board_list_update.php";
}
return true;
}
// 선택한 게시물 복사 및 이동
function select_copy(sw) {
var f = document.fboardlist;
if (sw == "copy")
str = "복사";
else
str = "이동";
var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");
f.sw.value = sw;
f.target = "move";
f.action = g5_bbs_url+"/move.php";
f.submit();
}
// 게시판 리스트 관리자 옵션
jQuery(function($){
$(".btn_more_opt.is_list_btn").on("click", function(e) {
e.stopPropagation();
$(".more_opt.is_list_btn").toggle();
});
$(document).on("click", function (e) {
if(!$(e.target).closest('.is_list_btn').length) {
$(".more_opt.is_list_btn").hide();
}
});
});
</script>
<?php } ?>
<!-- } 게시판 목록 끝 -->
write.skin.php
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
$tNum="ESG";
$sNum="ESG 온라인상담";
$g5['title'] = "";
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
include_once(G5_THEME_PATH.'/sub_head.php');
?>
<?php
if (!defined("_INDEX_") && !defined("_NOVISUAL_")){ ?>
<div class="sub_visual" style="background:url('/theme/jysolution/img/subvisual<?=$topmenu_tNum[$tNum]?>.png')">
<div class="sub_top_text">
<h3><?php echo $tNum ?></h3>
</div>
</div>
<div class="lnb_wrap">
<?php include_once(G5_THEME_PATH.'/mildmap.php'); ?>
</div>
<?php }
?>
<section id="bo_w" class="width common">
<h2 class="bo_w_name"><?php echo $sNum?> 글쓰기</h2>
<!-- 게시물 작성/수정 시작 { -->
<form name="fwrite" id="fwrite" action="<?php echo $action_url ?>" onsubmit="return fwrite_submit(this);" method="post" enctype="multipart/form-data" autocomplete="off" style="width:<?php echo $width; ?>">
<input type="hidden" name="uid" value="<?php echo get_uniqid(); ?>">
<input type="hidden" name="w" value="<?php echo $w ?>">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="wr_id" value="<?php echo $wr_id ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sfl" value="<?php echo $sfl ?>">
<input type="hidden" name="stx" value="<?php echo $stx ?>">
<input type="hidden" name="spt" value="<?php echo $spt ?>">
<input type="hidden" name="sst" value="<?php echo $sst ?>">
<input type="hidden" name="sod" value="<?php echo $sod ?>">
<input type="hidden" name="page" value="<?php echo $page ?>">
<?php
$option = '';
$option_hidden = '';
if ($is_notice || $is_esg || $is_secret || $is_mail) {
$option = '';
if ($is_notice) {
$option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="notice" name="notice" class="selec_chk" value="1" '.$notice_checked.'>'.PHP_EOL.'<label for="notice"><span></span>공지</label></li>';
}
if ($is_esg) {
if ($is_esg) {
$option_hidden .= '<input type="hidden" value="esg" name="esg">';
} else {
$option .= $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="esg" name="esg" class="selec_chk" value="3" '.$esg_checked.'>'.PHP_EOL.'<label for="esg"><span></span>esg</label></li>';
}
}
if ($is_secret) {
if ($is_admin || $is_secret==1) {
$option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="secret" name="secret" class="selec_chk" value="secret" '.$secret_checked.'>'.PHP_EOL.'<label for="secret"><span></span>비밀글</label></li>';
} else {
$option_hidden .= '<input type="hidden" name="secret" value="secret">';
}
}
if ($is_mail) {
$option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="mail" name="mail" class="selec_chk" value="mail" '.$recv_email_checked.'>'.PHP_EOL.'<label for="mail"><span></span>답변메일받기</label></li>';
}
}
echo $option_hidden;
?>
<div class="write_wrap">
<?php if($is_name){?>
<div class="write_box required">
<label for="wr_name" class="bwcon_title">이름</label>
<div class="write_content"><input type="text" name="wr_name" value="<?php echo $name;?>" id="wr_name" required class="" placeholder="이름"></div>
</div>
<?php }?>
<?php if($is_password){?>
<div class="write_box <?php echo $password_required;?>">
<label for="wr_password" class="bwcon_title">패스워드</label>
<div class="write_content"><input type="password" name="wr_password" id="wr_password" <?php echo $password_required;?> class="" placeholder="비밀번호" autocomplete="new-password"></div>
</div>
<?php }?>
<?php if($is_email){?>
<div class="write_box">
<label for="wr_email" class="bwcon_title">이메일</label>
<div class="write_content"><input type="text" name="wr_email" value="<?php echo $email;?>" id="wr_email" class="email " placeholder="이메일"></div>
</div>
<?php }?>
<!-- <?php if($is_homepage){?>
<div class="write_box">
<label for="wr_homepage" class="bwcon_title">홈페이지</label>
<div class="write_content"><input type="text" name="wr_homepage" value="<?php echo $homepage;?>" id="wr_homepage" class="" placeholder="홈페이지"></div>
</div>
<?php }?> -->
</div>
<div class="write_wrap">
<?php if($option){?>
<div class="write_box">
<label for="" class="bwcon_title">옵션</label>
<div class="write_content"><?php echo $option ?></div>
</div>
<?php }?>
<?php if($is_category){?>
<div class="write_box required">
<label for="ca_name" class="bwcon_title">분류</label>
<div class="write_content">
<select name="ca_name" id="ca_name" required>
<option value="">분류를 선택하세요</option>
<?php echo $category_option ?>
</select>
</div>
</div>
<?php }?>
<div class="write_box required">
<label for="wr_subject" class="bwcon_title">제목</label>
<div class="write_content">
<input type="text" name="wr_subject" value="<?php echo $subject ?>" id="wr_subject" required class="" size="50" maxlength="255" placeholder="제목">
<?php if ($is_member) { // 임시 저장된 글 기능 ?>
<script src="<?php echo G5_JS_URL; ?>/autosave.js"></script>
<?php if($editor_content_js) echo $editor_content_js; ?>
<button type="button" id="btn_autosave" class="btn_frmline">임시 저장된 글 (<span id="autosave_count"><?php echo $autosave_count; ?></span>)</button>
<div id="autosave_pop">
<strong>임시 저장된 글 목록</strong>
<ul></ul>
<div><button type="button" class="autosave_close">닫기</button></div>
</div>
<?php } ?>
</div>
</div>
<div class="write_box required">
<label for="" class="bwcon_title">기업명</label>
<div class="write_content"><input type="text" name="wr_1" id="wr_1" required value="<?=$write['wr_1']?>" placeholder="기업명"></div>
</div>
<div class="write_box required">
<label for="" class="bwcon_title">연락처</label>
<div class="write_content"><input type="text" name="wr_2" id="wr_2" required value="<?=$write['wr_2']?>" placeholder="연락처"></div>
</div>
<div class="write_box required">
<label for="" class="bwcon_title">사업자번호</label>
<div class="write_content"><input type="text" name="wr_3" id="wr_3" required value="<?=$write['wr_3']?>" placeholder="사업자번호"></div>
</div>
<div class="write_box required">
<label for="" class="bwcon_title">담당자이름</label>
<div class="write_content"><input type="text" name="wr_4" id="wr_4" required value="<?=$write['wr_4']?>" placeholder="담당자이름"></div>
</div>
<div class="write_box required">
<label for="" class="bwcon_title">제휴제안 내용</label>
<div class="write_content">
<input type="checkbox" name="wr_4" id="wr_4" r <?=($write['wr_4'])?"checked":"";?> value="ESG 및 지속가능성">ESG 및 지속가능성
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="특허(산업재산권)">특허(산업재산권)
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="R&D">R&D
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="ISO">ISO
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="인증">인증
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="교육"> 교육
<input type="checkbox" name="wr_4" id="wr_4" <?=($write['wr_4'])?"checked":"";?> value="기타">기타
</div>
</div>
</div>
<div class="write_wrap">
<label for="wr_content" class="sound_only">내용<strong>필수</strong></label>
<div class="wr_content <?php echo $is_dhtml_editor ? $config['cf_editor'] : ''; ?>">
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
<?php } ?>
<?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<div id="char_count_wrap"><span id="char_count"></span>글자</div>
<?php } ?>
</div>
</div>
<?php $i=1; ?>
<div class="write_wrap">
<?php for ($i=1; $is_link && $i<=G5_LINK_COUNT; $i++) { ?>
<div class="write_box">
<label for="wr_link<?php echo $i ?>" class="bwcon_title">링크 #<?php echo $i ?></label>
<div class="write_content"><input type="text" name="wr_link<?php echo $i ?>" value="<?php if($w=="u"){ echo $write['wr_link'.$i]; } ?>" id="wr_link<?php echo $i ?>" class="" placeholder="https://"></div>
</div>
<?php } ?>
</div>
<?php
if($file_count){echo '<div class="write_wrap">';}
for ($i=0; $is_file && $i<$file_count; $i++)
{
?>
<div class="write_box">
<label for="bf_file_<?php echo $i+1 ?>" class="bwcon_title">파일 #<?php echo $i+1 ?></label>
<div class="write_content">
<input type="text" autocomplete="off" placeholder="파일을 첨부해 주세요." readonly="readonly" class="file_name">
<label class="file_upload">업로드<input type="file" name="bf_file[]" id="bf_file_<?php echo $i+1 ?>" class="hidden_file" title="파일첨부 <?php echo $i+1 ?> : 용량 <?php echo $upload_max_filesize ?> 이하만 업로드 가능"></label>
</div>
</div>
<?php if ($is_file_content) { ?>
<div class="write_box">
<label for="bf_file_<?php echo $i+1 ?>_title" class="bwcon_title">파일 #<?php echo $i+1 ?> 설명</label>
<div class="write_content">
<input type="text" name="bf_content[]" id="bf_file_<?php echo $i+1 ?>_title" value="<?php echo ($w == 'u') ? $file[$i]['bf_content'] : ''; ?>" title="파일 설명을 입력해주세요." placeholder="파일 설명을 입력해주세요.">
</div>
</div>
<?php } ?>
<?php if($w == 'u' && $file[$i]['file']) { ?>
<div class="write_box">
<label for="" class="bwcon_title">파일 #<?php echo $i+1 ?> 관리</label>
<div class="write_content">
<span class="file_del"><input type="checkbox" id="bf_file_del<?php echo $i ?>" name="bf_file_del[<?php echo $i; ?>]" value="1"><span></span><label for="bf_file_del<?php echo $i ?>"><?php echo $file[$i]['source'].'('.$file[$i]['size'].')'; ?> 파일 삭제</label></span>
</div>
</div>
<?php } ?>
<?php
}
if($file_count){echo '</div>';}
?>
<?php if ($is_use_captcha) { //자동등록방지 ?>
<div class="write_wrap">
<?php echo $captcha_html ?>
</div>
<?php } ?>
<div class="btn_confirm write_div">
<a href="<?php echo get_pretty_url($bo_table); ?>" class="btn_cancel btn">취소</a>
<button type="submit" id="btn_submit" accesskey="s" class="btn_submit btn">작성완료</button>
</div>
</form>
<script>
$(function() {
$(".hidden_file").on("change", function() {
$(this).parent().parent().find(".file_name").val($(this).val());
});
});
<?php if($write_min || $write_max) { ?>
// 글자수 제한
var char_min = parseInt(<?php echo $write_min; ?>); // 최소
var char_max = parseInt(<?php echo $write_max; ?>); // 최대
check_byte("wr_content", "char_count");
$(function() {
$("#wr_content").on("keyup", function() {
check_byte("wr_content", "char_count");
});
});
<?php } ?>
function html_auto_br(obj) {
if (obj.checked) {
result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
if (result)
obj.value = "html2";
else
obj.value = "html1";
} else
obj.value = "";
}
function fwrite_submit(f) {
<?php echo $editor_js; // 에디터 사용시 자바스크립트에서 내용을 폼필드로 넣어주며 내용이 입력되었는지 검사함 ?>
var subject = "";
var content = "";
$.ajax({
url: g5_bbs_url + "/ajax.filter.php",
type: "POST",
data: {
"subject": f.wr_subject.value,
"content": f.wr_content.value
},
dataType: "json",
async: false,
cache: false,
success: function(data, textStatus) {
subject = data.subject;
content = data.content;
}
});
if (subject) {
alert("제목에 금지단어('" + subject + "')가 포함되어있습니다");
f.wr_subject.focus();
return false;
}
if (content) {
alert("내용에 금지단어('" + content + "')가 포함되어있습니다");
if (typeof(ed_wr_content) != "undefined")
ed_wr_content.returnFalse();
else
f.wr_content.focus();
return false;
}
if (document.getElementById("char_count")) {
if (char_min > 0 || char_max > 0) {
var cnt = parseInt(check_byte("wr_content", "char_count"));
if (char_min > 0 && char_min > cnt) {
alert("내용은 " + char_min + "글자 이상 쓰셔야 합니다.");
return false;
} else if (char_max > 0 && char_max < cnt) {
alert("내용은 " + char_max + "글자 이하로 쓰셔야 합니다.");
return false;
}
}
}
<?php echo $captcha_js; // 캡챠 사용시 자바스크립트에서 입력된 캡챠를 검사함 ?>
document.getElementById("btn_submit").disabled = "disabled";
return true;
}
</script>
</section>
<!-- } 게시물 작성/수정 끝 -->
write_update.skin.php
<?
$datetitme = date("Y-m-d H:i:s");
$subj = $_POST['wr_subject']." ".$datetitme;
for($i=0; $i<=26; $i++){
$wr2[$i] = $_POST['wr2'][$i];
if($i==0){
$wr_2 = $wr2[$i];
}else{
$wr_2 .= "|".$wr2[$i];
}
}
for($j=0; $j<=27; $j++){
$wr3[$j] = $_POST['wr3'][$j];
if($j==0){
$wr_3 = $wr3[$j];
}else{
$wr_3 .= "|".$wr3[$j];
}
}
for($k=0; $k<=16; $k++){
$wr4[$k] = $_POST['wr4'][$k];
if($k==0){
$wr_4 = $wr4[$k];
}else{
$wr_4 .= "|".$wr4[$k];
}
}
for($m=0; $m<=11; $m++){
$wr5[$m] = $_POST['wr5'][$m];
if($m==0){
$wr_5 = $wr5[$m];
}else{
$wr_5 .= "|".$wr5[$m];
}
}
$_POST['wr6'][0] = $_POST['writeZip'];
$_POST['wr6'][1] = $_POST['writeAddr1'];
$_POST['wr6'][2] = $_POST['writeAddr2'];
$_POST['wr6'][3] = $_POST['writeAddr3'];
$_POST['wr6'][4] = $_POST['writeJibeon'];
$_POST['wr6'][12] = $_POST['writeZip2'];
$_POST['wr6'][13] = $_POST['writeAddr12'];
$_POST['wr6'][14] = $_POST['writeAddr22'];
$_POST['wr6'][15] = $_POST['writeAddr32'];
$_POST['wr6'][16] = $_POST['writeJibeon2'];
for($n=0; $n<=23; $n++){
$wr6[$n] = $_POST['wr6'][$n];
if($n==0){
$wr_6 = $wr6[$n];
}else{
$wr_6 .= "|".$wr6[$n];
}
}
for($o=0; $o<=5; $o++){
$wr7[$o] = $_POST['wr7'][$o];
if($o==0){
$wr_7 = $wr7[$o];
}else{
$wr_7 .= "|".$wr7[$o];
}
}
$sql = " update {$write_table}
set wr_subject = '{$subj}',
wr_2 = '{$wr_2}',
wr_3 = '{$wr_3}',
wr_4 = '{$wr_4}',
wr_5 = '{$wr_5}',
wr_6 = '{$wr_6}',
wr_7 = '{$wr_7}'
where wr_id = '{$wr_id}' ";
sql_query($sql);
?>
답변 2
말씀해주신 alert은 /bbs/write_update.php 페이지에서 발생하는 alert 입니다.
if ($wr_content == '') {
$msg[] = '<strong>내용</strong>을 입력하세요.';
}
/bbs/write_update.php 파일을 수정하셨나요?
올려주신 스킨 소스에는 문제가 없는 것 같습니다.
도움이 되셨다면 채택 한번 부탁드립니다^^
$wr_content 부분이 전송이 제대로 안되어 발생되는 오류로 보입니다.
해당 변수가 제대로 전송이 되는지 디버깅 해보셔야 할듯 합니다.
write.skin.php 페이지에서 폼전송과정중에 해당 /bbs/write_update.php 파일에 해당 $wr_content 변수값이
전달이 안되어 발생되는 오류로 확인됩니다.
답변을 작성하시기 전에 로그인 해주세요.