But my question is with Googles new algorithm, is my PHP site or a straight HTML better for SEO?? Below is sample coding for my PHP page that calls up the HTML pages. The reason I do this is if I change a header or footer, I only do it once.
ALSO does it matter if the HTM pages that are called up need to be optimized too??
<body topmargin="10" bottommargin="10" link="#0000FF" vlink="#0000FF" background="images/backg.gif">
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="900" id="table1" bgcolor="#FFFFFF">
<tr>
<td>
<p align="center"></p>
[b] <? include("includes/header.htm") ?></td>[/b]
</tr>
</table>
</div>
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="900" id="table2" bgcolor="#FFFFFF">
<tr>
<td width="150" valign="top" bgcolor="#FFF1A4">
<p align="center"></p>
<? include("includes/left_column.htm") ?></td>
<td valign="top">
<table border="0" cellpadding="5" cellspacing="0" width="100%" id="table14">
<tr>
[b]<td><? include("pages/index.htm") ?></td>[/b]
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
<td width="150" valign="top" bgcolor="#FFF1A4">
<p align="center"></p>
[b]<? include("includes/right_column.htm") ?></td>[/b]
</tr>
</table>
</div>
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="900" id="table3">
<tr>
<td valign="top">
<p align="center"></p>
[b]<? include("includes/footer.htm") ?></td>[/b]
</tr>
</table>
</div>
</body>
</html>











