I'm trying to incorporate something like Masterpages into a website, and have been wondering about something.
Should you have one template site where you require the header, footer and content(by passing a variable which points to a content file).
example of template.php:
require(header.php);
require($content.php);
require(footer.php);
or should you just require the header and footer template in every site.
example of sonething_site.php:
require(header.php);
//content here
require(footer.php);
Thanks