ball420 Posted April 17, 2008 Share Posted April 17, 2008 i have started building my pages with <? include ("top.inc"); ?> and all my code for the page here and then <? include ("bottom.inc"); ?> does anyone know if this takes away from SEO? thanks fro the replys! Link to comment https://forums.phpfreaks.com/topic/101587-php-includes/ Share on other sites More sharing options...
Zhadus Posted April 17, 2008 Share Posted April 17, 2008 In short, kind of What the search engines see are the page as a whole. The include statements put all of the code that's in those files in the page the search engine sees as if it were a standard HTML document. However, if you have too much PHP processing time, the search engine might consider the entire page non-responsive. Overall, if you can keep the processing time down, the spider will crawl it like any HTML page. Link to comment https://forums.phpfreaks.com/topic/101587-php-includes/#findComment-519742 Share on other sites More sharing options...
ball420 Posted April 17, 2008 Author Share Posted April 17, 2008 cool, that def makes sense. thanks for the reply i'll just have to pay attention to my file size more than i normally do. thanks again Link to comment https://forums.phpfreaks.com/topic/101587-php-includes/#findComment-519974 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.