Hi there,
I'm trying to fully validate one of my websites, which runs largely on PHP.
I have it set up in the (simplified) format of:
<?php include("header.php");?>
<p>Body</p>
<?php include("footer.php");?>
In the header the doctype, CSS and various other aspects are set.
In the footer I...