我是初学者,我的页面被放置D:\wamp\www\CI\application\views\pages
,内页中有一个文件,其中包含其他文件。
如何设置路径,这是我的索引文件,放在D:\wamp\www\CI\application\views
<?php
include("files/header.php");
include("base_url().Admin/sidebar.php");
include("files/handler.php");
?>
</div>
<!-- end: PAGE -->
<!-- end: MAIN CONTAINER -->
<?php
include("files/footer.php");
?>
请帮助我......提前致谢
答案 0 :(得分:0)
包含文件需要相对或绝对路径。您正尝试在第二行中包含Web URL。并且以不合适的方式,因为它需要包含围绕base_url()
函数的引号,但附加“class / method”。
关于您的问题,您正在使用:
include("base_url().Admin/sidebar.php");// wich is wrong
您正在寻找:
include(FCPATH . "Admin/sidebar.php");