코멘트 창 글수정시 문제점 정보
코멘트 창 글수정시 문제점
본문
코멘트 창에서 여유필드
wr_1 ~ wr_5 까지 사용중입니다.
새글 작성시 문제없이
저장이 되는데요
코멘트 수정시
저장하면
wr_1 ~ wr_5 하면 데이터가 날라갑니다.
코멘트 입력소스에서
<!-- 코멘트 입력 -->
<div id=comment_write style="display:none;">
<table width=100% border=0 cellpadding=1 cellspacing=0 bgcolor="#dddddd"><tr><td>
<form name="fviewcomment" method="post" action="./write_comment_update.php" onsubmit="return fviewcomment_submit(this);" autocomplete="off" style="margin:0px;">
<input type=hidden name=w id=w value='c'>
<input type=hidden name=bo_table value='<?=$bo_table?>'>
<input type=hidden name=wr_id value='<?=$wr_id?>'>
<input type=hidden name=comment_id id='comment_id' value=''>
<input type=hidden name=sca value='<?=$sca?>' >
<input type=hidden name=sfl value='<?=$sfl?>' >
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=spt value='<?=$spt?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=cwin value='<?=$cwin?>'>
<input type=hidden name=is_good value=''>
<input type=hidden name=wr_1 value='<?=$wr_1?>'>
<input type=hidden name=wr_1 value='<?=$wr_2?>'>
<input type=hidden name=wr_1 value='<?=$wr_3?>'>
<input type=hidden name=wr_1 value='<?=$wr_4?>'>
<input type=hidden name=wr_1 value='<?=$wr_5?>'>
이부분이 문제인거 같은데요
<?=$wr_5?> 를 $list[$i][wr_5] , $view[wr_5] , $write[wr_5] 어떤걸 넣어도 안됩니다.
wr_1 ~ wr_5 까지 사용중입니다.
새글 작성시 문제없이
저장이 되는데요
코멘트 수정시
저장하면
wr_1 ~ wr_5 하면 데이터가 날라갑니다.
코멘트 입력소스에서
<!-- 코멘트 입력 -->
<div id=comment_write style="display:none;">
<table width=100% border=0 cellpadding=1 cellspacing=0 bgcolor="#dddddd"><tr><td>
<form name="fviewcomment" method="post" action="./write_comment_update.php" onsubmit="return fviewcomment_submit(this);" autocomplete="off" style="margin:0px;">
<input type=hidden name=w id=w value='c'>
<input type=hidden name=bo_table value='<?=$bo_table?>'>
<input type=hidden name=wr_id value='<?=$wr_id?>'>
<input type=hidden name=comment_id id='comment_id' value=''>
<input type=hidden name=sca value='<?=$sca?>' >
<input type=hidden name=sfl value='<?=$sfl?>' >
<input type=hidden name=stx value='<?=$stx?>'>
<input type=hidden name=spt value='<?=$spt?>'>
<input type=hidden name=page value='<?=$page?>'>
<input type=hidden name=cwin value='<?=$cwin?>'>
<input type=hidden name=is_good value=''>
<input type=hidden name=wr_1 value='<?=$wr_1?>'>
<input type=hidden name=wr_1 value='<?=$wr_2?>'>
<input type=hidden name=wr_1 value='<?=$wr_3?>'>
<input type=hidden name=wr_1 value='<?=$wr_4?>'>
<input type=hidden name=wr_1 value='<?=$wr_5?>'>
이부분이 문제인거 같은데요
<?=$wr_5?> 를 $list[$i][wr_5] , $view[wr_5] , $write[wr_5] 어떤걸 넣어도 안됩니다.
댓글 전체
wr_1의 네임값이 다 wr_1 이네요.??
value랑 name 이랑 맞춰보세요~
value랑 name 이랑 맞춰보세요~
질문 오타네요 네임값 다르게 해도 되지가 않아요
wr_N은 수정하지 않는다고 하면
update_skin등에서 아예 $w='u'이면 wr_N 업데이트를 sql에서 빼 버리세요.
update_skin등에서 아예 $w='u'이면 wr_N 업데이트를 sql에서 빼 버리세요.
코멘트수정은 basic skin: 57 라인쯤 보면
<span id='edit_<?=$comment_id?>' style='display:none;'></span><!-- 수정 -->
<span id='reply_<?=$comment_id?>' style='display:none;'></span><!-- 답변 -->
</div>
<input type=hidden id='secret_comment_<?=$comment_id?>' value="<?=strstr($list[$i][wr_option],"secret")?>">
<textarea id='save_comment_<?=$comment_id?>' style='display:none;'><?=get_text($list[$i][content1], 0)?></textarea></td>
이런데 여기도 <input type='hidden' name="wr_N" 이 필요하지 않나요?
<span id='edit_<?=$comment_id?>' style='display:none;'></span><!-- 수정 -->
<span id='reply_<?=$comment_id?>' style='display:none;'></span><!-- 답변 -->
</div>
<input type=hidden id='secret_comment_<?=$comment_id?>' value="<?=strstr($list[$i][wr_option],"secret")?>">
<textarea id='save_comment_<?=$comment_id?>' style='display:none;'><?=get_text($list[$i][content1], 0)?></textarea></td>
이런데 여기도 <input type='hidden' name="wr_N" 이 필요하지 않나요?
엑스엘에님 말이 정답입니다.
<input type=hidden id='secret_comment_<?=$comment_id?>' value="<?=strstr($list[$i][wr_option],"secret")?>">
이부분에 추가를 한다음에
아래쪽에 자바스크립에서 벨류값을 채워주는 방식이던데 이부분을 해결하지 못해서 미치겠습니다.
엑스엘엠님 시간되시면 부탁좀 ^^
<input type=hidden id='secret_comment_<?=$comment_id?>' value="<?=strstr($list[$i][wr_option],"secret")?>">
이부분에 추가를 한다음에
아래쪽에 자바스크립에서 벨류값을 채워주는 방식이던데 이부분을 해결하지 못해서 미치겠습니다.
엑스엘엠님 시간되시면 부탁좀 ^^
소스보기"로 확인해 보세요. 각 코멘트마다 밑에
<form이 하나씩 들어 가 있지 않나요?
<form이 하나씩 들어 가 있지 않나요?