PHP isn't complex at all if you just use includes.
Here's a complex breakdown of everything you need to know:
PHP Code:
<?php //open tag
include('path/myfile.ext'); //include will get the contents of another file and output them.
//path/myfile.ext is the location of the file.
//if the file doesn't exist, it will give an error.
/*Close tag >>*/ ?>
Client side for this would be more complex and wouldn't really save anything notable in terms of load for the client or server. It would be more taxing on the browser, as well.
Bookmarks