'F5'에 해당되는 글 1건

프레임으로 나눠진 사이트에서의 새로고침

프로그래밍/PHP 2006/07/09 11:12
프레임으로 나눠진 사이트에서 index 파일의 제일 상단에 아래의 내용처럼 삽입해 주면 페이지 새로고침시(F5) 원래있던 곳에서 페이지가 리로딩 된다.

<?
$LastModified = gmdate("D d M Y H:i:s", filemtime($HTTP_SERVER_VARS[SCRIPT_FILENAME]));
header("Last-Modified: $LastModified GMT");
header("ETag: \"$LastModified\"");
?>
<html>
<frameset rows="0,*" frameborder=0 framespacing=0 border=0>
<frame name="top" src="top.html" noresize marginwidth=0 marginheight=0 target=main>
<frame name="main" src="main.html" marginwidth=0 marginheight=0 target=main>
</frameset>
</html>

크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by 아이젠
이전페이지 1 다음페이지