Develop
2003.04.23 11:05
[js] 새로고침(refresh)방법과 다른 페이지 바꾸기..
조회 수 6701 댓글 0
<html>
<head>
<title>접속자 보기(닉스피아)</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
function start()
{
setInterval("alert()",10000);
}
function alert()
{
location.reload();
window.status=" ";
return true;
}
//-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
아무내용이나 ~~~ 파일에서 카운터나,내용을 부르거나
DB에서 접속자나 기타 내용을 실시간으로 업데이트 되는 내용을 넣어 보세요.
<script>start();</script>
</body>
</html>
-
[algorithm] Greedy (탐욕 기법)
-
[sql] alter table 쿼리 예제
-
[sql] 내 방명록 답글 찾는 쿼리문.. (JOIN 구문)
-
[c++] Window API(MFC) 오목 게임
-
[java] 스윙(swing) 인터페이스 이용해서 만든 구구단.. ㅋㅋ
-
[c] 프로그래밍 과제..(colprint)
-
[php] 초간단 웹 카운터..
-
[jsp][php] LDAP 프로그래밍..
-
[c] C에서 MySQL DB 사용하기~
-
[php] 초간단 게시판 페이지 분할 알고리즘
-
[vbs] CD롬 뱉는 스크립트..
-
[js] 새로고침(refresh)방법과 다른 페이지 바꾸기..