I am thinking of doing something like:
<?php
$title = "Title of current page";
include("head.php");
?>
<h1>The stuff that goes inside the BODY tag</h1>
<?php
include("foot.php");
?>
Keyword meta tags and descriptions will be displayed within the head.php script. If I do this, can search engines read keywords and descriptions? And if so, how much will it affect the rank of the search engine?
source
share