0
我有一個導航欄和包裝保存在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>
所有幫助非常感謝!