I am building a few sites that I want to be SEO. I do know keywords and description, etc. 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.
Php Vs Html Pages Best For Seo?
18
I am building a few sites that I want to be SEO. I do know keywords and description, etc.
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??
<html>
<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>
<? include("includes/header.htm") ?></td>
</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>
<td><? include("pages/index.htm") ?></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
<td width="150" valign="top" bgcolor="#FFF1A4">
<p align="center"></p>
<? include("includes/right_column.htm") ?></td>
</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>
<? include("includes/footer.htm") ?></td>
</tr>
</table>
</div>
</body>
</html>
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??
<html>
<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>
<? include("includes/header.htm") ?></td>
</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>
<td><? include("pages/index.htm") ?></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
<td width="150" valign="top" bgcolor="#FFF1A4">
<p align="center"></p>
<? include("includes/right_column.htm") ?></td>
</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>
<? include("includes/footer.htm") ?></td>
</tr>
</table>
</div>
</body>
</html>
- frenchsquared
- [1] reply
- tcr1016
- timeless123
- ernestrategos
- [1] reply
- tcr1016
- Istvan Horvath
- shantanu
- rainso0
- Linkie
- ernestrategos
- mojojuju
- automaton
- banglamovie
- soldoni
- stevenpayales
- jithin Banned
- axissoftech Banned
- evercrazy007
- rosy123 Banned
- Detangled
- Ahtisham Banned
- eSeM
Next Topics on Trending Feed
-
18