Mobile app version of vmapp.org
Login or Join
Connie744

: If my page titles are dynamically created with PHP will Google be able to read them? My page titles are dynamically created with PHP: I set my page title in my PHP functions, and when the

@Connie744

Posted in: #Php #SearchEngines #Seo

My page titles are dynamically created with PHP: I set my page title in my PHP functions, and when the function is triggered the title is set.

Is Google able to read the page titles?

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Connie744

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kevin317

If your page title is dynamic and the content is the same, then the search engines will be able to read them but you'll be hurting yourself. The title of a page, whether using the <title> or <h1> tags are very important for SEO. If it keeps changing you're hurting your page's chance of ranking well because you keep changing very important pieces of the page.
If you mean you have one PHP script and it can generate many pages dynamically by pulling content from a database then, no, this won't hurt you at all. PHP is processed on the server side and then it sends out HTML to the user agent. In this case the user agent is Google. So all Google sees is the HTML of your pages. (FYI, this is programming 101 kind of stuff. You may want to read up on PHP basics before continuing with your project. I strongly suspect you are generating code with security vulnerabilities).

10% popularity Vote Up Vote Down


 

@Cody1181609

Why wouldn't it be able to read your title? It reads only once and evrytime it crawles again, it reads title again, too

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme