게시판 여분필드로 만든 항목이 글 수정하면 내용이 없어져 있어요
본문
여분필드로 만든 항목을 글쓰기한 뒤 수정을 누르니 내용이 날아갔네요 ㅠㅠㅠ
왜 그런 걸까요?
<input type="text" name="wr_1" value="" class="frm_input full_input required" style="margin-top:10px;" placeholder="연락처">
<input type="text" name="wr_2" value="" class="frm_input full_input required" style="margin-top:10px;" placeholder="주소">
답변 1
value 값을 넣어야 합니다.
<input type="text" name="wr_1" value="<?php echo $wr_1 ?>" class="frm_input full_input required" style="margin-top:10px;" placeholder="연락처">
<input type="text" name="wr_2" value="<?php echo $wr_2 ?>" class="frm_input full_input required" style="margin-top:10px;" placeholder="주소">
참고 http://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=10
답변을 작성하시기 전에 로그인 해주세요.