새창 띄워서 작업 후 부모창 리로드(reload)
페이지 정보
작성자 최고관리자 작성일 21-02-10 17:24 조회 9,067 댓글 0본문
아래는 데이터 삭제시 사용...
---------------------부 모 창------------------------------
<script language="JavaScript">
<!--
function UserDel(uid) {
msg = "데이타를 삭제 하시겠습니까?";
var tmp = confirm(msg);
if(tmp) {
var url = "aaaa.html?id=" + uid;
window.open(url, 'new_win','width=15, height=15, scrollbars=no resizable=no top=102400,left=120800');
}
}
//-->
</script>
<a href="javascript:UserDel('밴수');">삭제</a>
-----------------------새끼 창-----------------------
<?
include "./auth.php";
########## 데이타베이스에 연결 ##########
include "./dbconnect.inc";
$query = mysql_query("delete from tablename where column='밴수값'");
?>
<script>
<!--
opener.document.location.reload();
window.close();
//-->
</script>
---------------------부 모 창------------------------------
<script language="JavaScript">
<!--
function UserDel(uid) {
msg = "데이타를 삭제 하시겠습니까?";
var tmp = confirm(msg);
if(tmp) {
var url = "aaaa.html?id=" + uid;
window.open(url, 'new_win','width=15, height=15, scrollbars=no resizable=no top=102400,left=120800');
}
}
//-->
</script>
<a href="javascript:UserDel('밴수');">삭제</a>
-----------------------새끼 창-----------------------
<?
include "./auth.php";
########## 데이타베이스에 연결 ##########
include "./dbconnect.inc";
$query = mysql_query("delete from tablename where column='밴수값'");
?>
<script>
<!--
opener.document.location.reload();
window.close();
//-->
</script>
댓글목록 0
등록된 댓글이 없습니다.