익스 11 에서 게시판 글이 안써지는 경우
본문
익스 11 에서 게시판 글쓰기에서 글이 안써지는데
크게 손댄것 없는데 왜 안될까요~?
<?php if ($is_name) { ?>
<tr>
<th scope="row"><label for="wr_name">담당자<strong class="sound_only">필수</strong></label></th>
<td><input type="text" name="wr_name" value="<?php echo $name ?>" id="wr_name" required class="frm_input required" size="10" maxlength="20"></td>
</tr>
<?php } ?>
<?php if ($is_password) { ?>
<tr>
<th scope="row"><label for="wr_password">비밀번호<strong class="sound_only">필수</strong></label></th>
<td><input type="password" name="wr_password" id="wr_password" <?php echo $password_required ?> class="frm_input <?php echo $password_required ?>" maxlength="20"></td>
</tr>
<?php } ?>
<tr>
<th scope="row"><label for="wr_3">연락처</label></th>
<td><input type="text" name="wr_3" value="<?php echo $wr_3 ?>" id="wr_3" class="frm_input" size="30" maxlength="100"></td>
</tr>