비회원 글쓰기 페이지에서 비밀번호 입력
본문
글쓰기 페이지에서 항목에 입력할때 다른항목에도 같이 입력되게 할 수 있나요?
아래 예를 들면 비밀번호에 이메일에 입력된 값을 자동으로 전달하려구요.
그런게 가능한지요?
<?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_22">이메일<strong class="sound_only">필수</strong></label></th>
<td><input type="text" name="wr_22" value="<?=$write['wr_22']?>" id="wr_22" placeholder="" class="frm_input " maxlength="30" ></td>
</tr>
!-->
답변 1
비밀번호 입력 부분은 삭제
write_update.skin.php 파일 만들고 내용은 이렇게..
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$wr_password = get_encrypt_string($wr_22);
sql_query(" update $write_table set wr_password = '$wr_password' where wr_id = '$wr_id' ");
?>
답변을 작성하시기 전에 로그인 해주세요.