묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
/index.php 화일에는
메뉴 부분을 따로 만든 테이블 menu.php 가 있어서.. 그것을 include 시켰습니다.
그것은 이상없이 메뉴에 들어간 그림들이 로딩이 되는데..
/items/item.php 화일에 menu.php 를 인클루드 즉 include('../menu.php') 를 하면..
메뉴는 로딩이 되지 않고 X 자 표시가 납니다.
제 생각으로는 /items/ 라는 디렉토리에서 이미지들을 찾을려니깐 없어서 그런 현상이 나타난것 같은데
어떻게 해야지.. 다른 디렉토리에서 작업한 파일에서 루트에 있는 menu.php 를 include 시켜 메뉴안에 이미지까지
나오게 할수 있는지요..
소스...
menu 소스 :
<table width="200" border="1">
<tr>
<td>메뉴</td>
<td><img src="./images_new/top_menu.gif" width="207" height="25"></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
index 소스
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<?php include('./menu.php'); ?>
<body>
여긴 물건
</body>
</html>
item_test.php 소스
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<?php include('../menu.php'); ?>
<body>
여긴 물건
</body>
</html>
그럼.. 답변 부탁드려요.. ^^*
* zero님에 의해서 게시물 이동되었습니다 (2004-07-19 12:19)
include 관련 질문이요.. include 하니깐.. 그림이 안뜨는데..
2004.07.19 12:11
/index.php 화일에는
메뉴 부분을 따로 만든 테이블 menu.php 가 있어서.. 그것을 include 시켰습니다.
그것은 이상없이 메뉴에 들어간 그림들이 로딩이 되는데..
/items/item.php 화일에 menu.php 를 인클루드 즉 include('../menu.php') 를 하면..
메뉴는 로딩이 되지 않고 X 자 표시가 납니다.
제 생각으로는 /items/ 라는 디렉토리에서 이미지들을 찾을려니깐 없어서 그런 현상이 나타난것 같은데
어떻게 해야지.. 다른 디렉토리에서 작업한 파일에서 루트에 있는 menu.php 를 include 시켜 메뉴안에 이미지까지
나오게 할수 있는지요..
소스...
menu 소스 :
<table width="200" border="1">
<tr>
<td>메뉴</td>
<td><img src="./images_new/top_menu.gif" width="207" height="25"></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
index 소스
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<?php include('./menu.php'); ?>
<body>
여긴 물건
</body>
</html>
item_test.php 소스
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<?php include('../menu.php'); ?>
<body>
여긴 물건
</body>
</html>
그럼.. 답변 부탁드려요.. ^^*
* zero님에 의해서 게시물 이동되었습니다 (2004-07-19 12:19)