Show what each page will look like. The pages do not have to be “functional” but the design should clear. My pages will have 4 products on each page with an add to cart function next to each product.
Describe your design for your site’s shopping cart. That is, will it be a separate page that the user can view and edit, or will it be integrated into the product pages? If so, describe in detail how this will work on your site. Provide several examples of using the cart. My design for my shopping cart will be that the user will add an item and each time the user adds that item it will update the cart that is pushed to the server.
3.Explain specifically how you will use sessions to manage your shopping cart. In particular, what shopping cart data will be stored in the session, what data format will be used (NOT what data type, but the format like with the data format used for your registration data). Use code examples showing what data structures (such as arrays and their objects) you will use to manage the shopping cart data and how they will be used in a session. I will use the sessions to store my shopping cart data and allow the session to save the data wherever the user is on the store.
How will you avoid access to your application when the user has not logged in or registered? What are the particular security concerns you must address? I will use a cookie check if the user is logged in, I need to address that the user can change and edit this cookie at will.
Upon a successful login, how do you provide personalization in your UI? Explain how you did or will do this (paste code if necessary) I will display their username using the cookie that was sent and display it on the UI.
6.If you are working with partners, how will you split up the work in your team so that you are working in parallel as effectively as possible? That is, who is doing what and when? I’am not working with a partner.
7.How are you approaching Assignment 3 differently than Assignment 2? I’am approaching this assignment differently than assignment 2 by thinking more of the structure of how I want to set up the data and read it.