본문
아래와 같이 header.leftmenu,php 와 세부메뉴 파일을 분리합니다.
세부메뉴파일은 leftmenu.01.php 과 같은 네이밍을 합니다. 로그인 기본 파일은 leftmenu.00.php 입니다.
<? include_once "_happyjung_.php"; // 공통
////////////// 회사소개
if ($_SERVER['PHP_SELF'] =='/2008/mares/intro.php' || $_SERVER['PHP_SELF'] =='/2008/mares/history.php') {
include ("leftmenu.01.php");
////////////// 교육과정
} elseif ($_SERVER['PHP_SELF'] =='/2008/education/main.php') {
include ("leftmenu.02.php");
////////////// 여행
} elseif ($bo_table == 'tour_local' || $_SERVER['PHP_SELF'] =='/2008/tour/012.php') {
include ("leftmenu.03.php");
////////////// 장비
} elseif ($ca_id =='a0' || $ca_id =='b0' || $ca_id =='c0' || $ca_id =='40') {
include ("leftmenu.04.php");
////////////// 게시판
} elseif ($bo_table =='notice' || $bo_table =='free') {
include ("leftmenu.05.php");
////////////// 회원로그인
} else {
include ("leftmenu.00.php");
}
?>
관련링크
댓글목록
등록된 댓글이 없습니다.