Hello, First of all, I would like to apology for this simple question, but maybe you can clarify my doubt about it. Well, in SEO the 'Title' tag plays an important role. Since I am using dynamic pages (PHP), do you think if I use PHP code to define the title of the page it will have any negative influence in my position on search engines or nothing at all? Thanks in advance for your help.
Once the php code has been executed on your server all that the search engine bots get is a simple html page, so if your php code outputs a valid title tag it will be ok with the search engines. I hope I've understood your question!
Yes, I got it right. It was what I think should happen, but just would like to be sure before I go to all pages, change the titles to use php variables, and then get my SERP's destroyed... Well, of course the only thing I am thinking to do is to susbstitute: <title> My page title here </title> by: <?php echo "<title>" . $title . "</title>"; ?> Well, the variable $title will be passed on the URL address Thanks for your help.