Shopping Cart Script using Session ArrayLearn the Basics of Two dimensional array shopping cart scripts This script uses three main parts .
Displaying products with options to add , remove and update the CartWe will display the products by taking data from a MySQL table. In our table, against each product we have stored the path of the image of the product, product Id ( p_id) ,product name, unit price. How to display images by taking data from MySQL table. Displaying Product with Quantity matching to CartWhile displaying the products , we will display JQuery UI spinner to show the quantity of the product available in the cart. If the product is not there in shopping cart then the spinner ( quantity ) will show 1 and user can change to any value within a maximum limit of 10. We have done this by using PHP code at the loading of the products page. We read the quantity available against each product and then set the value of the spinner.
The variable $qty we will use to set the default value of each record ( Product ) while displaying inside while loop.
After changing the quantity, the product will automatically added to the cart along with the quantity ordered ( set by user through spinner ) . By making the quantity equal to 0 , user can remove the product from shopping cart.
Adding products to Cart by buttonDefault quantity of each product is kept at 1, to add this quantity user can click the add button against the record to store the product id and quantity in our cart. We used common class for all add buttons ( class='img-thumbnail cart-add' ). We used my_function() to send product id and quanity to backend script.
By changing the quantity cart will be update with new data. Product will be removed from the cart by making quantity equal to zero.
Adding products by changing Quantity ( Spinner )Inside Shopping cart, quantity for the product will be incremented or decremented with the change of value of the spinner ( quantity ). There is a button for users to add products with default quantity to the shopping cart, however with change in quantity by Spinner , the cart gets automatically updated.
We used debounce function to introduce some delay while changing the value of the spinner.
By setting the spinner (quantity ) to 0 , the product can be removed from the shopping cart.
Removing products from CartWhile displaying the products with details , there is an option to change the quantity, customer can remove the product by changing the quantity to zero.User can click the remove button against each product to remove the item from the cart. We used class='cart-remove' for all remove buttons of the products.
In the above code we are sending product id and quantity = 0 to backend script. After posting we are setting the corresponding spinner value to 0
As discussed above there are three events which affects the Cart and against each of these events we Post product id and quantity to our backend script add.php . These three events pass product id and quantity through POST method. 1.Addition of product ( product id and quantity equal to 1 ) through button 2.Change in Quantity ( product id and quantity ) through spinner 3.Remove Product (product id and quantity equal to zero ) through button In all the above three cases we will post Product Id ( p_id ) and Quantity ( qty ) to backend script add.php . For this we will prepare a common JQuery function which we can call on triggering of different events. This function post data and receive the status of the backend posting and show the message to user.
Displaying Number of products in CartAt the top right of the page we will display number of items present in the cart. This is same as counting number of elements present inside an array.
After every update of the cart we will count the total number of elements ( products ) present and accordingly change the value using JQuery.
In above code size_of_cart is returned by our backend script add.php file with a value equal to number of elements present inside our $_SESSION[cart] array.
Subscribe to our YouTube Channel here
This article is written by plus2net.com team.
https://www.plus2net.com
| ||||||||||||
| ||||||||||||