链接到另一个php页面并包含页眉和页脚

时间:2017-03-20 21:23:37

标签: php header footer

我是初学者,只是想学习php。下面是我的index.php文件:

<?php
  include("header.php");
  require_once('connect.php');
  include("home.php");
  include("footer.php");
?>

我制作了一个简单的测试网站,其主页包含在index.php文件中。如果我想包含相同的代码,是否必须在每个页面上使用include(header.php);? 感谢。

1 个答案:

答案 0 :(得分:0)

您在每个页面上都没有包含header.php。 试试这个:

<?php include("header.php");?>
<div class="container">
   <?php include ("home.php");?>
</div>
<?php include ("footer.php");?>

保留页眉和页脚,只需更改内容(home.php,otherpage.php,...)。 我建议您使用jQuery动态加载container

的内容