001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
<?php // (2020.5.3, 차재복, Cha Jae Bok, cjbword@gmailcom) # 세션 설정 // 세션 스타트 (매 웹페이지 마다 필요) session_start(); # 세션 파괴 session_destroy(); # 전달 변수 처리 및 그에따른 리다이렉션 if ( isset($_GET['dir']) and isset($_GET['file']) ) { $filepath = "../".$_GET[dir]."/".$_GET[file]; echo "<meta http-equiv='refresh' content='0; url={$filepath}'>"; } ?>