write_update 파일에서 저장하고 새창으로 떠요~~ㅠㅠ
본문
게시판에서요...
조회를 클릭해서 input안의 값을 post로 새창으로 넘겨 데이터를 추출한후 일정 값을 다시 게시판으로 주어서 저장을 하면요~~~
update 파일을 거치면서 이상하게 새창으로 뜨네요...
<form name="fwrite" id="fwrite" method="post" onsubmit="return fwrite_submit(this);" enctype="multipart/form-data">
//조회새창띄우기
<a href="#" onClick="postPopUp('fwrite')"><b>[조회]</b></a>
//저장하기버튼
<input type=image id="btn_submit" src="<?=$board_skin_path?>/img/ok_btn_1.gif" border=0>
</form>
<script type="text/javascript">
function postPopUp(fwrite) {
frm = document.getElementById(fwrite);
window.open('', 'viewer', 'width=820,height=700,scrollbars=1');
frm.action = "<?=$board_skin_path?>/find_day.php";
frm.target = "viewer";
frm.method = "POST";
frm.submit();
}
function fwrite_submit(f)
{
if(!confirm('정확하게 입력하셨습니까?\n\n정확하게 입력되었다면 등록합니다. ')) return false;
document.getElementById('btn_submit').disabled = true;
<?
if ($g4[https_url])
echo "f.action = '$g4[https_url]/$g4[bbs]/write_update.php';";
else
echo "f.action = './write_update.php';";
?>
return true;
}
</script>
업데이트 파일에서 돌아가기는
alert("정상적으로 예약되었습니다. ", "{$https_url}/board.php?bo_table=$bo_table");
입니다.
경고창 띄우고 돌아가는건데요..ㅠㅠ
혹시 원인을 찾을 수 있을까요?
!-->
답변을 작성하시기 전에 로그인 해주세요.