2011년 12월 28일 수요일

SWITCH 문을 이용항여 좌측메뉴 코딩

<xmp>
switch( $bo_table ) {
 case "html" :
  $mainVisual = "$g4[path]/inc/02.php";  // 플래시 비주얼 페이지마다 바뀜
  $subMenu = "$g4[path]/inc/subMenu01.php"; // 왼쪽 서브메뉴 역시 페이지마다 바뀜
    break;
case "shop" :
  $mainVisual = "$g4[path]/inc/03.php";
  $subMenu = "$g4[path]/inc/subMenu02.php";
    break;
case "information" :
  $mainVisual = "$g4[path]/inc/04.php";
  $subMenu = "$g4[path]/inc/subMenu03.php";
    break;
case "event" :
  $mainVisual = "$g4[path]/inc/05.php";
  $subMenu = "$g4[path]/inc/subMenu04.php";
    break;
case "faq" :
  $mainVisual = "$g4[path]/inc/06.php";
  $subMenu = "$g4[path]/inc/subMenu05.php";
    break;
default : $mainVisual = "$g4[path]/inc/03.php";  // 일반 페이지일 경우 나타낼 파일
          $subMenu = "$g4[path]/inc/subMenu02.php"; // 일반 페이지일 경우 나타낼 왼쪽메뉴
  }
 
-----------------------------------
호출 : <? include_once ("$mainVisual") ?>
         <? include_once ("$subMenu") ?>  
 
------------------------------------
- head.php -

<?
if($bo_table=="b21"){
  include_once("$g4[path]/ccm_left_menu.php");
}
if($bo_table=="b31"){
  include_once("$g4[path]/mihon_left_menu.php");
}
if($bo_table=="b41"){
  include_once("$g4[path]/jaehon_left_menu.php");
}
if($bo_table=="b51"){
  include_once("$g4[path]/community_left_menu.php");
}
if($bo_table=="b61"){
  include_once("$g4[path]/sitemap_left_menu.php");
}
?>
 
-------------------------------------------
<?
if($gr_id=="그룹A"){ //그룹A 일때
  include_once("$g4[path]/inc/left_gunuboard4.htm");
 }
else { // A그룹이 아니라면 left_gunuboard3.htm 불러와라
 include_once include_once("$g4[path]/inc/left_gunuboard3.htm");
 }
?>
</xmp>

댓글 없음:

댓글 쓰기