You're developing an e-commerce site and want to store user cart items temporarily. Which would be the most appropriate method to store this data without requiring user login?
- Cookies
- Session Storage
- Local Storage
- IndexedDB
The most appropriate method for storing user cart items temporarily without requiring login would be "Session Storage." It's a client-side storage solution that retains data during a single session and is perfect for this use case.
Loading...
Related Quiz
- CSRF attacks primarily target which aspect of a web application?
- What is the main difference between require() and require_once()?
- When handling multiple form fields, which HTML attribute allows users to select multiple values in an input field?
- What is the operator used for addition in PHP?
- If you try to use a foreach loop on a non-array variable in PHP, it will result in a ______.