Forum Moderators: mack
If by include clause you are talking about SSI includes or PHP, no, both of these output the same text to the browser and that's what the search engine will digest, no problem there.
If you do this with Ajax or vanilla Javascript, that content will be less likely to be seen by search engines (though there are some claims it can be seen.) Option A and B are safest.
Lets say you have a file called header.php and it contains the text "this is the header"
you also have a footer page containing "this is the footer"
Within your index page you use the following...
<?php
include "header.php";
echo"this is the index page";
include "footer.php";
?>
All the search engine will see is...
this is the header
this is the index page
this is the footer
Mack.