【发布时间】:2014-03-29 22:35:34
【问题描述】:
我在header.php 中保存了一个导航栏和包装器,并将其包含在我的content.php 页面中。但是当我加载content.php 页面时,来自content.php 的内容位于header.php 页面的包装之外。
<html>
<body>
<div class="navigation">
<?php include 'header.php'; ?>
<h1>Welcome to my home page.</h1>
<p>Some text.</p>
</div>
</body>
</html>
非常感谢所有帮助!
【问题讨论】:
标签: php html navigation include wrapper