PHP Template Integration
Posted: Sun Mar 29, 2009 5:20 pm
I coded my template into sections, and the "content.html" will change according to what menu link is clicked. How do I code that line of PHP in this main template to show that new content will be inserted? for example about.html, contact.html etc..
Code: Select all
<html>
<body>
<?php include ("header.html") ?>
<?php include ("content.html") ?>
<?php include ("footer.html") ?>
</body>
</html>