[Solved] How do I create e-commerce products without creating a page for each product? [closed]


make a file to show the product, and always when you need to show a product call that file.
this means the code is the same for all products, 1, 2, 4000, doesnt matter.

this means you have to have the products on a database or store in an array of some kind. and then every time you call the product file, the product file will have a way to identified that product, and then show the properties of that product.

wordpress is a good example, uses php, but the idea is the same.

solved How do I create e-commerce products without creating a page for each product? [closed]