34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
|
|
<?php
|
||
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||
|
|
|
||
|
|
if ($is_comment_write) {
|
||
|
|
if($w == '') $w = 'c';
|
||
|
|
?>
|
||
|
|
<!-- 댓글 쓰기 시작 { -->
|
||
|
|
<aside class="bo_vc_w" id="bo_vc_w_<?=$list_item['wr_id']?>">
|
||
|
|
<form name="fviewcomment" action="./write_comment_update.php" onsubmit="return fviewcomment_submit(this);" method="post" autocomplete="off">
|
||
|
|
<input type="hidden" name="w" value="<?php echo $w ?>" id="w">
|
||
|
|
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
|
||
|
|
<input type="hidden" name="wr_id" value="<?php echo $list_item['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="page" value="<?php echo $page ?>">
|
||
|
|
|
||
|
|
<input type="hidden" name="wr_subject" value="<?=$member['mb_name'] ? $member['mb_name'] : "GUEST"?>" />
|
||
|
|
|
||
|
|
<div class="input-comment">
|
||
|
|
<textarea name="wr_content" required class="required" title="내용"></textarea>
|
||
|
|
</div>
|
||
|
|
<div class="btn_confirm">
|
||
|
|
<button type="submit" class="ui-comment-submit ui-btn">입력</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</form>
|
||
|
|
</aside>
|
||
|
|
<?
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
|