Lesson 27 - E-shop in PHP - Shopping cart
In the previous lesson, E-shop in PHP - Test data, we added 100 test products to our e-shop. The next couple of tutorials will be about creating orders, i.e. adding goods to a cart and passing them through the checkout.
Shopping cart
Users add products to a cart, then, when they're done, they proceed to checkout and finish the order. This functionality is done in different ways in different e-shops, either on server-side or client-side. Let's introduce all of the possible approaches, their advantages, drawbacks, and then decide which one to use.
Client
We could store data into cookies or a local storage on the client-side.
Cookies
Cookies represent the mechanism designed to keep a website's state information.
They have the following benefits:
- They are widely supported by browsers
- They are persistent (it doesn't happen that the data expires after a short time)
And these disadvantages:
- Size limitation to 4096 bytes
- Data is sent to the server with each request, which is not a disadvantage, but it does not make much sense in our case
Local storage
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
Before buying this article, you have to buy the previous one
This article is licensed: Premium no-reselling, by buying this article, you agree with the terms of use.
Commercial article (licence no-reselling)
This article is based on many years of experience in the IT field, and describes how to develop a professional commercial product or parts, that can be directly used to generate profit or to get as a gate into the industry.
This knowledge is only for the members of our community who are working their way up to become IT professionals. Therefore, this knowledge is only available in exchange for credits. You can use the source code from this article for one commercial project. However, you will not be able to resell it. Simply put, you can't buy our article once and then sell our code multiple times. If you need to use this code a bit more extensively, we are ready to discuss Commercial licence options with you. You can find more info on this in the following article Licence.
Are you ready to become a professional? All you have to do is click here!.
Article description
Requested article covers this content:
In this tutorial, we'll discuss the different approaches of implementing shopping carts in e-shops, choose the best one, and create a table for orders.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.