How can I sell products from a website? [closed]

-1

How about, I'm new to web programming and I have a project for a sales website, what topics should I investigate?

    
asked by Fernando28R 08.10.2017 в 17:58
source

2 answers

0

You can start using a CMS (Content Management System) like Prestashop.
These CMS allow you to have your store ready in a matter of days and as you succeed, you can develop or buy modules that adapt to your specific needs.

    
answered by 08.10.2017 / 18:18
source
1

I see the tags that you put to your question that you plan to make your website with php. The best thing is that you do not reinvent the wheel. Currently there are many open source projects that are precisely sales sites. One of the most popular is PrestaShop link written in php. Now if it is an academic exercise and the idea is to make a site from scratch I suggest you investigate the following topics:

  • Sessions and cookies: your users need to register and log in and include products in the shopping cart. For all this you must use cookies.
  • SQL Database: Obviously you must use a database to store the products you are going to sell.
  • Ajax requests: your site must work with ajax requests. To optimize the user experience, the page should not be loaded with each user's action.
  • answered by 08.10.2017 в 18:31