PHP与所有页面的布局相同

时间:2016-04-02 12:25:20

标签: php html

我是网络开发的新手。我想在每个其他页面中使用此索引页面布局。所以我制作了这段代码。现在,当索引页面打开时,我得到了包含在php中的表格的完美布局。但是,当我点击旧书时,它会重定向到" 1.php"但布局保持不变,表没有替换。我现在已附上截图我希望显示部分的图书应该替换所有其他重定向页面但是我没有通过此代码获取请建议我在此代码中编辑

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<div class="btn-group-vertical btn-group-lg" role="group">
  <a class="btn btn-default btn-lg" role="button" href="page1.html">Short Text</a>
  <a class="btn btn-default btn-lg" role="button" href="page2.html">Long link text</a>
</div>

2 个答案:

答案 0 :(得分:3)

更好,你写了单独的header.php,sidebar.php和footer.php。

然后按照以下顺序将它们包含在每个页面中:

    <?php 
     include("header.php");
     include("sidebar.php");
     ?> 
     .............
     .............
     Here goes individual page's HTML content followed by
      ..............
     ..............
     <?php
     include("footer.php");
     ?>

答案 1 :(得分:-1)

要拥有格式良好的页面,最好花一点时间学习简单而现代的PHP模板引擎,例如Twig,并像英雄一样开始你的职业生涯:)