묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 글삭제 php코드좀 봐주세요.ㅠㅠ
2008.12.03 03:32
<?
include "db_info.php";
$result=mysql_query("select pass from testboard where id=$id", $conn);
$row=mysql_fetch_array($result);
if ($pass==$row[pass] ){
$conndel = "delete from testboard where id=$id";
$result=mysql_query($conndel, $conn);
}
else{
echo ("
<script>
alert('비밀번호가 틀립니다.');
history.go(-1);
</script>
");
exit;
}
?>
<center>
<meta http-equiv='Refresh' content='0; URL=list.php'>
<FONT size=2 >삭제되었습니다.</font>
가 php코드인데
비밀번호를 맞게 눌러도 삭제가 안되는 현상에 빠져있는데.ㅠ_ㅠ
도움좀 주세요.ㅠㅠ
include "db_info.php";
$result=mysql_query("select pass from testboard where id=$id", $conn);
$row=mysql_fetch_array($result);
if ($pass==$row[pass] ){
$conndel = "delete from testboard where id=$id";
$result=mysql_query($conndel, $conn);
}
else{
echo ("
<script>
alert('비밀번호가 틀립니다.');
history.go(-1);
</script>
");
exit;
}
?>
<center>
<meta http-equiv='Refresh' content='0; URL=list.php'>
<FONT size=2 >삭제되었습니다.</font>
가 php코드인데
비밀번호를 맞게 눌러도 삭제가 안되는 현상에 빠져있는데.ㅠ_ㅠ
도움좀 주세요.ㅠㅠ