I\'m designing a relatively simple site for a friend. I would like to impliment php so that he can change his header/footer without having to go back through every file. P
You can do it by using include_once() function in php. Construct a header part in the name of header.php and construct the footer part by footer.php. Finally include all the content in one file.
For example:
header.php
footer.php
So the final files look like
include_once("header.php")
body content(The body content changes based on the file dynamically)
include_once("footer.php")