To create a product in an online store, do I need to create an HTML page for each product?

1

My question is: I am creating a website with a store, for a customer to access the page with the details of a product, it is necessary to create a page for each product, or is there any way a page can be modified according to the product

Need to create a page like this for all products? if there is some other automated way of doing it, I would appreciate it if you could indicate it or a video on youtube would be fantastic too.

Thank you in advance.

    
asked by anonymous 30.04.2018 / 15:07

1 answer

0

The most advisable is to use php, some Framework to front, such as the Angular, or create a service that returns the product and consume it with Ajax. A cool detail to study, if you pay attention to large e-commerce stores, it simulates a URL for each product the user selects, but this can be done with ReWrite where it generates a different URL for its user, since it is accessing the same product page, just changing the information and URL.

    
30.04.2018 / 15:54