PHP Help!

Do PHP knowledge helps in SEO? If so please do mention how? Thank you.

No, PHP has nothing to do with SEO. PHP happens on the server. Search engines—like your browser—only see what happens after PHP has finished doing its thing.

SEO is the assessment of Words on a HTML page.

The HTML page is served up from a Server.

PHP is a language which runs on the Server, and can respond to the request for the page in a variety of ways.

For example it could serve different Words as part of the HTML output depending upon the time of day or the perceived location of the Browser requesting the HTML page and many other options.

Does serving different words to different time zones, or to different countries on the same webpage help SEO? I don’t know.

Does serving different words to different countries on different webpages help SEO? I think so.

/gallery/FR/images.php
/gallery/EN/images.php
/gallery/DE/images.php

Typically in PHP each of those webpages would actually be the same single page, but the Words appearing on it would depend upon the language chosen. If you changed the order of the images, say, you’d only actually change one page (a template).

Does the PHP itself help SEO, no it does not.

Used cleverly in combination with other tools/knowledge, yes it has its part to play - but you could achieve the above by maintaining 3 different static HTML webpages.

/gallery/FR/images.html
/gallery/EN/images.html
/gallery/DE/images.html

But that would mean if you changed the order of the images, you’d have to change 3 pages.

Then imagine you were supporting more languages.

php by itself won’t help in seo by itself.
Its all about how you implement it.
If correctly used it can help.
and this books try to explain some processes how to use it correctly
http://www.amazon.com/Professional-Search-Engine-Optimization-PHP/dp/0470100923

thanks