Header and Footer
Header and footer are included From index.php
Example of page body loading inside header and footer
include("view/inc/head.php");
include("view/pages/".$p.".php");
include("view/inc/foot.php");
As you see header and footer files are positioned into view folder under inc (includes) sub folder.
Inc folder is used for component files.
Updated almost 2 years ago
What’s Next