网页显示如下错误

Web page shows the following error

创建了一个名为 Coffe website 的文件夹。将此文件夹保存在 xampp/htdocs 中。将项目 url 作为 localhost/xampp/Coffewebsite。 Netbeans 连接器在 chrome 中处于活动状态。它说 web_page 是 not_available.

错误信息:

Warning: include(Template.php): failed to open stream: No such file or directory in D:\xampp setup\htdocs\Coffe website\index.php on line 5

Warning: include(): Failed opening 'Template.php' for inclusion (include_path='.;D:\xampp setup\php\PEAR') in D:\xampp setup\htdocs\Coffe website\index.php on line 5.

index.php:

<?php
$title="Home";
$content="Hello world";
include 'Templates.php' //to link this page to our templates 
?>

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>

看起来 Template.php 不存在。

确保仔细检查 url 是否正确(例如,好的 url 可能是 directory/Template.phptemplate.php../Template.php) .

请检查文件夹名称和文件名称。如果您检查它们,这些是否存在?请在检查文件和路径名称后告诉我们更多信息。

" 无法打开流:没有这样的文件或目录"

这确实意味着您的脚本无法访问当前目录中的文件 Template.php ;) 检查您的路径