Hello everyone....i am hoping someone can give me some advice.
Here are my questions:
1) when you use include headers, footers and main body type html coding to build your pages dynamically how do search engines craw them?
2) lets say you build a page like so:
include("header.php");
include("WHAT_EVER_main_body_page_you_need.php");
include("footer.php");
a) do you still place the meta tags in the header file or should you also place meta tags into the WHAT_EVER_main_body_page_you_need.php? for example place tags in the index.php page and also place tags in the gallery.php page as well.
Or should your meta tags be includes as well. So for example, if you are the index.php it includes one set and if the path is gallery.php then the if statement would include a different set of meta tags?
Or should I not use page includes to build the total page at all and simply build each page straight up with HTML and place PHP tags in the HTML to create the dynamic data output???
What is the best way to do this? Any suggestions would be helpful
Thanks in advance for your input
Jay