새창 띄워서 작업 후 부모창 리로드(reload)
페이지 정보
본문
아래는 데이터 삭제시 사용...
---------------------부 모 창------------------------------
<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>
- 이전글모든 텍스트박스의 수 더하기. text sum 21.02.10
- 다음글셀렉트에서 onchange시 값을 가져가서 다시 갱신하기 21.02.10
댓글목록
등록된 댓글이 없습니다.