묻고답하기

<html>
<head>
<title>** 성형외과 **</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<link rel="stylesheet" type="text/css" href="main.css">
</head>

<body bgcolor="#999999" text="#000000">
<table width="702" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr bgcolor="#333333">
    <td colspan="3" height="1"></td>
  </tr>
  <tr>
    <td width="1" bgcolor="#333333"></td>
    <td width="700" bgcolor="#FFFFFF">
<table width="700" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><? include "top.php"; ?></td>
        </tr>
        <tr>
          <td height="500" valign="top">
            <? //메뉴에 따른 페이지 분류
                   switch ($p)
          
           {
          
                case (hospital) :                
                switch ($mode)
                                              {
                                   case (time) :                
                                include "/hospital/time.php";
                            break;
                                case (locate) :
                                        include "/hospital/locate.php";
                                break;
                                default :
                                        include "/hospital/main.php";
                                }
                        
                        
            break;

                case (doctor) :
                        include "/doctor/main.php";
                break;
                
                case (column) :
                        include "/column/main.php";
                break;

                case (aesthetic) :
                        include "/aesthetic/main.php";
                break;
                
                case (board) :
                        include "/board/tboard.php?board=demo_aesthetic";
                break;

                default :
                        include "/doctor/main.php";

                break;

       }
                  ?>
          </td>
        </tr>
        <tr>
          <td>
            <? include "bottom.php"; ?>
          </td>
        </tr>
      </table>
      </td>
    <td width="1" bgcolor="#333333"></td>
  </tr>
  <tr bgcolor="#333333">
    <td colspan="3" height="1"></td>
  </tr>
</table>
</body>
</html>



위와 같은 방법으로 index.php에서 다른 페이지를 인클루드하여 사이트를 만들려고 합니다.
다른 서브페이지까지는 어떻게 하다보니 무리없이 됩니다.
그런데 보드에서 따~악 걸리더군요.  저런식으로 보드는 부를수가 없더라구요, 경로문제도 있고 해서 이럴경우 어떤식으로 처리를 해야되는것인지 깜깜합니다. 조언이라도 부탁합니다.

너무 막막해서 질문드립니다. 좋은 하루 되세요.