【发布时间】:2015-07-23 10:30:58
【问题描述】:
创建了一个名为 Coffe website 的文件夹。将此文件夹保存在 xampp/htdocs 中。将项目网址设为localhost/xampp/Coffewebsite。 Netbeans 连接器在 chrome 中处于活动状态。它说 web_page is not_available。
错误信息:
警告:include(Template.php):未能打开流:第 5 行的 D:\xampp setup\htdocs\Coffe website\index.php 中没有这样的文件或目录
警告:include():在 D:\xampp setup\htdocs\Coffe website\index.php 中打开 'Template.php' 以包含 (include_path='.;D:\xampp setup\php\PEAR') 失败在第 5 行。
index.php:
<?php
$title="Home";
$content="Hello world";
include 'Templates.php' //to link this page to our templates
?>
模板.php:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> <?php echo $title; ?> </title>
</head>
<body>
<div id="wrapper">
<div id="banner"></div>
<nav id="navigation">
<ul id="nav">
<li><a href="index.php"> Home </a></li>
<li><a href="#">Coffee</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<div id="content area">
<?php echo $content; ?>
</div>
<div id="sidebar"> </div>
<footer> <p> All rights received </p> </footer>
</body>
</html>
【问题讨论】:
标签: php netbeans-8