wr_6,wr_7을 이용해서 Write스킨을 꾸몄습니다.
본문
답변 6
올리신 질문을 잘 살펴 보세요
답변 받기에 충분한 질문인지
뭘 질문 하시는 건지 알 수가 없습니다
소스보니 에디터가 적용 되도록 해 놓으셨고
캡쳐화면에도 소스 적용이 잘 된듯 한데요
에디터 옵션 적용시에
캡쳐된 곳 에디터 적용 안되게 하는게 목적이라면
잘못 적용 하셨습니다
여분 필드에 걍 textarea 사용하시면 되는데
말이죠
여분필드를
<?php echo editor_html("wr_7", $write['wr_7']); ?>
이렇게 쓰시니 에디터 옵션 적용시에 에디터가 여러개 떠 버리죠...
<textarea name="wr_7"><?php echo $write['wr_7']; ?></textarea>
이런식으로 쓰셔야죠...
접근부터가 틀렸어요.
여분필드 사용법으로 접근을 하셨어야 됩니다.
작은별님의 글을 보고서 꾸며본 겁니다.
<table width="100%" border="1" cellspacing="1" cellpadding="1" style="background:#FFFFFF;border:1px #CCC solid;">
<tr>
<TR>
<th scope="row"><label for="wr_6">가사</label></th>
<th scope="row"><label for="wr_7">해석</label></th>
</TR>
<TR>
<td class="wr_content2"><?php echo editor_html("wr_6", $write['wr_6']); ?></TD>
<td class="wr_content3"><?php echo editor_html("wr_7", $write['wr_7']); ?></TD>
<?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 } ?>
</TR>
<tr>
<td class="form_title"><label for="wr_content">내용<strong class="sound_only">필수</strong></label></td>
<td class="wr_content form_sub" colspan="3" style="padding-right:10px;">
<div class="write_div">
<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>
</td>
</tr>
</table>