0% found this document useful (0 votes)
28 views2 pages

Project Report Shopping Cart

Uploaded by

eeshsaxena
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views2 pages

Project Report Shopping Cart

Uploaded by

eeshsaxena
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Project Report: PHP Shopping Cart with Admin Panel

Project Title

Art Express - A PHP-based online shop with shopping cart and admin product management.

Modules Overview

1. User Module:

- Login/Register using sessions.

- Product listing from the 'products' table.

- Add to Cart: insert or update in 'cart_items'.

2. Cart Module:

- Displays items in user's cart.

- Shows product details and totals.

3. Admin Module:

- Form-based product addition (name, description, price, image).

- Adds data to 'products' table.

Database Tables

products:

- id (INT, Primary)

- name (VARCHAR)

- description (TEXT)

- price (DECIMAL)

- image (VARCHAR)

cart_items:

- id (INT, Primary)

- user_id (INT)
Project Report: PHP Shopping Cart with Admin Panel

- product_id (INT)

- quantity (INT)

- added_at (TIMESTAMP)

Tech Stack

Backend: PHP with PDO

Frontend: HTML, Bootstrap 5

Database: MySQL

Session Handling: PHP sessions

Key Features

- Secure DB operations with prepared statements.

- Cart logic: insert or update quantity.

- Admin interface using Bootstrap.

- Basic validation on form inputs.

Future Improvements

- Edit/delete products in admin panel.

- Upload product images.

- Add search/filter/pagination.

- Role-based admin authentication.

- Checkout system for order placement.

You might also like