10 Thousand Interior Pages

1 replies
I am building a website, all of the inner pages as far as content, images ect are identical. The only difference is the part numbers (and meta tile and description)

What is the easiest way to go about this?
#interior #pages #thousand
  • Profile picture of the author johnnyN
    put all your data in a database
    then do a regular php query to bring back data
    insert data into correct places in the html.

    e.g.
    mysite.com/parts/part-002
    (php will take "part-002" and query the database for that part to bring back all info)

    then you will need to know php to separate out the individual columns in the row.
    here is a starter page with info Retrieve Data From a MySQL Database - PHP MySQL Tutorial

    example of filling meta description
    <meta name="description" content="<?php echo $metaDescription ?>">
    {{ DiscussionBoard.errors[4452000].message }}

Trending Topics