Include header in PHP

gesf

Active member
You can have your html header code in a file, e.g.: header.php, or even your footer. And then you just need to make something like:

Example: index.php
Code:
<?
include 'header.php';

// Content goes here

include 'footer.php';
?>
 
Back
Top