I have created a web web site to display some teacher's profile. Every profile page generate with more dynamic information from database. In my home page I have listed every teachers' profile from database with a link to his complete profile. Eg. index.php?teacherId=21. Now I need to convert from my dynamic pages to basic static HTML pages to get some benefits for my website. Number one is get search engine higher rank to my profile pages. further I need to rename html page with teacher's name. As well as my website has a searching option. It help for users to search teacher profile according to their subjects, grades, town, city, etc. So Can I know, it is possible to create such a searching system to my web site after I made my php page to basic HTML pages...

any ideas are greatly appreciated.

Thank you very much..

    thara;11005357 wrote:

    Number one is get search engine higher rank to my profile pages.

    Search engines are concerned with content over anything else; having an HTML page versus a PHP page won't matter. And if you're concerned about having the teacher's name in the URL then you can add their name as a GET variable anyway (and just not have it do anything).

    As for your searching system... it would make much more sense to keep them as PHP pages and use PHP to handle the queries to pass off to MySQL and handle the result.

      Or use URL rewriting for "pretty" url's (and supposedly more search-engine-friendly), e.g. via Apache's mod_rewrite.

        it would be better to use the php to get the data from the database as It doe not hav to do with the search engine

          Write a Reply...