0
It is a recurring question that I have in relation to PHP, I am new in PHP programming and I am developing a project of this, I did it as follows, it works but I would like a more practical way in relation to this. I created a file header.php with only the Header of the page and a footer.php with only the Footer. Below the code:
<?php require('header.php') ?>
*//content here*
<?php require('footer.php') ?>
Is there a framework, plugin or something like this to make it easier to use Master Page in PHP? Thanks in advance!