سؤال

I have a navigation bar and wrapper saved in header.php and have included it on my content.php page. but when i load the content.php page, the content from content.php is outside the wrapper from the header.php page.

<html>
<body>
<div class="navigation">
<?php include 'header.php'; ?>
<h1>Welcome to my home page.</h1>
<p>Some text.</p>
</div>
</body>
</html>

all help is greatly appreciated!

هل كانت مفيدة؟

المحلول

Because you define your wrapper for your navigation menu (which is in your header.php file). If you want your wrapper to wrap your whole document define this in your content.php file.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top