1

回答: 是网络托管的问题。

这是我的代码

<!DOCTYPE html> 
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
        <meta name="description" lang="en" content="Test Website " /> 
        <meta name="author" content=""> 
        <link rel="stylesheet" type="text/css" href="css/style.css">
        <title</title>
    </head>
    <body>
        <section id="wrapper">
            <?php include('includes/topHeader.php'); ?>
            <?php include('includes/leftSide.php'); ?>
            <?php include('includes/middleSide.php'); ?>
            <?php include('includes/rightSide.php'); ?>
        </section>

        <?php include('includes/foot.php'); ?>
        </section>
    </body>
</html>

质疑其他 php 文件没有出现在主页中?

创建它我使用了这个网站 http://www.1stwebdesigner.com/css/how-to-create-php-website-template/

更新 查看源代码显示:

<section id="wrapper">

<!--?php include('../includes/topHeader.php'); ?-->
<!--?php include('../includes/leftSide.php'); ?-->
<!--?php include('../includes/middleSide.php'); ?-->
<!--?php include('../includes/rightSide.php'); ?-->

</section>

<!--?php include('../includes/foot.php'); ?-->
4

2 回答 2

1

您正在使用该include功能,因此请确保:

  • 您尝试包含的文件确实存在,您可以使用file_exists函数进行测试
  • 您在停止执行程序的文件中的某处没有任何致命错误(您可以检查错误日志)
  • 您的标记格式正确(在某些情况下,当代码格式不正确时,浏览器无法正确呈现页面)
于 2013-07-03T16:07:03.280 回答
0

除了已经建议的内容之外,快速说明一下。尝试

<?php include('../includes/topHeader.php'); ?>
<?php include('../includes/leftSide.php'); ?>
<?php include('../includes/middleSide.php'); ?>
<?php include('../includes/rightSide.php'); ?>

我这样说是假设包含文件夹位于文件夹结构中的当前文件之上。

于 2013-07-03T16:10:28.663 回答