Include Files


File: header.php

<!-- header.php -->
<h2>Welcome to Academy Of Information Technology</h2>
<hr>

Second File

File: main.php

<?php include 'header.php'; ?> 
<p>This is the main content of the website.</p>

Output

Welcome to Academy Of Information Technology


This is the main content of the website.