Any idea why this does not validate ( under w3c )
<?=date('Y')?>
Doc type
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
Yellow Triangle warning:
Line 78, Column 40: processing instruction does not start with name
Red cross warning:
Line 78, Column 29: xmlParsePI : no target name
LIne of code it is in is:
<p>© Copyright 2011 - <?=date('Y') ?> </p>
Do you have short tags turned on in PHP?
Replace your
with this:
..and see what happens?