1. header.php
2. footer.php
3. index.php
→ header.php
<!-- Header Page -->→ footer.php
<!doctype html>
<html lang="en">
<head>
<title>eSeong Page</title>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>Welcome to eSeong Page</h1>
</header>
<navigation>
<ul>
<li><a href="index.php">Home</a></li>
</ul>
</navigation>
<!-- Footer Page -->
<footer>→ index.php
© <?php echo date('Y'); ?> eSeong
</footer>
</body>
</html>
<!-- Index Page -->
<?php include('header.php'); ?>Preview page as below :
<div id="content">
</div>
<?php include('footer.php'); ?>
→ http://foodwall.asia/eSeong/filepath/
If you can't get the page working, please let me know the error in comment.
No comments:
Post a Comment