After hours of reading about Search Engine Optimization I have but one question.
Since the search engines read HTML and CSS only when indexing sites, then theoretically the following script SHOULD be indexed by a search engine.
<?
echo " ?> //here we end php
<font color="red" size="2">Hello Everybody!</font>
<? "; ?> //here we end the php output
So the search engine should be reading and indexing Hello Everybody!
I know that this following script would not be indexed.
<?
echo "Hello Everybody!";
?>
My questions is, would I be correct in thinking that the first script WOULD be read and indexed by search engines (even though I know it would rank last).
Thanks.