게시판 글 수정 시, 비밀번호 체크
본문
write_reset__ok.php
<?php
$bno = $_GET['idx'];
$username = $_POST['name'];
$userpw = password_hash($_POST['pw'], PASSWORD_DEFAULT);
$title = $_POST['title'];
$content = $_POST['content'];
$sql = mq("update board set name='".$username."',pw='".$userpw."',title='".$title."',content='".$content."' where idx='".$bno."'"); ?>
<script type="text/javascript">
alert("수정되었습니다.");
</script>
<meta http-equiv="refresh" content="0 url=../read_board.php?idx=<?php echo $bno; ?>">
이런식으로 글 수정을 진행하였는데, 글 수정 시, 비밀번호를 입력하게 됩니다. 근데 비밀번호가 틀리면 수정되지 않게끔 하려하는데 조건을 어떤식으로 넣어야 할까요?
check파일을 하나 더 만들어서 진행 해보았는데, 비밀번호 체크가 되는 것 같은데, 글 내용/제목/비밀번호 모든항목이 다 날라가버리네요..
write_reset__check.php
<?php
$bno = $_GET['idx'];
$sql = mq("select * from board where idx='".$bno."'");
$board = $sql->fetch_array();
?>
<div id='writepass'>
<form action="" method="post">
<p>비밀번호<input type="password" name="pw_chk" /> <input type="submit" value="확인" /></p>
</form>
</div>
<?php
$bpw = $board['pw'];
if(isset($_POST['pw_chk']))
{
$pwk = $_POST['pw_chk'];
if(password_verify($pwk,$bpw))
{
$pwk == $bpw;
?>
<script type="text/javascript">
location.replace("write_reset__ok.php");
</script>
<?php
}else{ ?>
<script type="text/javascript">
alert('비밀번호가 틀립니다');
</script>
<?php } } ?>
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.