include 시 기존 파일은 include 되서 나오는데 새로만든 페이지가 include되지 않고있어요 채택완료
라균
5년 전
조회 1,831
include 시 기존 파일은 include 되서 나오는데 새로만든 페이지가 include되지 않고있어요
</p>
<pre>
<div class="wrap_sub wrap_form">
<h1 class="title"><?= $g5['title']; ?></h1>
<? include (G5_ADM_PATH.'/mb_join_info_test.php'); ?> // 문제되는 코드
<? include 'mb_list.php'; ?> // 이건 나와요
<? include (G5_ADM_PATH.'/mb_list.php'); ?> // 이건 나와요
</div></pre>
<p>
mb_join_info_test.php 내부
</p>
<pre>
<span> test </span></pre>
<p>
mb_list.php, mb_join_info_test.php 두 소스의 위치는 같은 파일 위치에 있습니다.
phpstrom에선 mb_list 의 위치는 찾지만 mb_join_info_test 의 위치는 못찾더라구요...
소스의 위치를 찾도록 지정해주는 곳이 있나요??? include 하고 싶네요 ㅠㅠ
댓글을 작성하려면 로그인이 필요합니다.
답변 3개
답변을 작성하려면 로그인이 필요합니다.
로그인
사진 추가 합니다.
[code]
<? include './mb_list.php'; ?>
<? include 'mb_list.php'; ?>
<? include (G5_ADM_PATH.'/mb_list.php'); ?>
[/code]
요 3개는 정상적으로 화면에서 뿌려니다.
test 만든 페이지는 위 3개 중 나오질 않아요