Creating an E-Commerce Website involves several components, including a MySQL database schema, file structure, layout design using Bootstrap 5, and complete PHP scripts for user authentication and management. Below is a comprehensive guide to help you set up your system.

Project Introduction

The E-commerce Website is a comprehensive online platform designed to facilitate the buying and selling of products. This system allows customers to browse products, manage their shopping carts, and place orders seamlessly. Vendors can manage their product listings, while administrators oversee the entire platform. With features such as user authentication, product reviews, promotions, and a wishlist, the system aims to enhance the shopping experience for users and streamline operations for vendors and administrators.

Project Objectives

  • To develop a secure and user-friendly platform for online shopping and product management.
  • To implement a comprehensive database schema that supports user management, product listings, and order processing.
  • To provide functionalities for managing shopping carts, wishlists, and promotions effectively.
  • To enable customers to leave reviews and ratings for products to enhance community feedback.
  • To ensure a seamless checkout process with multiple payment options.
  • To create a responsive design that enhances user experience across various devices.

Project Modules

  1. User Management: Handles user registration, authentication, and role assignments (customer, admin, vendor).
  2. Product Management: Allows vendors to add, edit, and manage product listings, including descriptions and stock levels.
  3. Category Management: Manages product categories to facilitate easier navigation and product discovery.
  4. Shopping Cart: Facilitates the addition and removal of products in the shopping cart, along with quantity management.
  5. Order Management: Tracks customer orders, including order status and order history.
  6. Order Items Management: Manages individual items within an order, including quantity and pricing.
  7. Review System: Allows customers to leave ratings and comments on products to provide feedback.
  8. Promotions Management: Manages promotional codes and discounts for products.
  9. Wishlist Management: Allows users to save products for future purchase consideration.
  10. Product Images Management: Handles the upload and management of images associated with products.

1. MySQL Database Schema


CREATE DATABASE ecommerce;
USE ecommerce;
-- Table for users
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) NOT NULL UNIQUE,
password VARCHAR(255) NOT NULL,
email VARCHAR(100) NOT NULL UNIQUE,
role ENUM('customer', 'admin', 'vendor') DEFAULT 'customer',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for products
CREATE TABLE products (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
description TEXT NOT NULL,
price DECIMAL(10, 2) NOT NULL,
category_id INT NOT NULL,
stock INT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);
-- Table for product categories
CREATE TABLE categories (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL UNIQUE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for product images
CREATE TABLE product_images (
id INT AUTO_INCREMENT PRIMARY KEY,
product_id INT NOT NULL,
image_url VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (product_id) REFERENCES products(id) ON DELETE CASCADE
);
-- Table for shopping cart
CREATE TABLE shopping_cart (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
product_id INT NOT NULL,
quantity INT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE,
FOREIGN KEY (product_id) REFERENCES products(id) ON DELETE CASCADE
);
-- Table for orders
CREATE TABLE orders (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
total DECIMAL(10, 2) NOT NULL,
status ENUM('pending', 'shipped', 'delivered', 'canceled') DEFAULT 'pending',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
-- Table for order items
CREATE TABLE order_items (
id INT AUTO_INCREMENT PRIMARY KEY,
order_id INT NOT NULL,
product_id INT NOT NULL,
quantity INT NOT NULL,
price DECIMAL(10, 2) NOT NULL,
FOREIGN KEY (order_id) REFERENCES orders(id) ON DELETE CASCADE,
FOREIGN KEY (product_id) REFERENCES products(id) ON DELETE CASCADE
);
-- Table for reviews
CREATE TABLE reviews (
id INT AUTO_INCREMENT PRIMARY KEY,
product_id INT NOT NULL,
user_id INT NOT NULL,
rating INT NOT NULL CHECK (rating >= 1 AND rating <= 5),
comment TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (product_id) REFERENCES products(id) ON DELETE CASCADE,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
-- Table for promotions
CREATE TABLE promotions (
id INT AUTO_INCREMENT PRIMARY KEY,
code VARCHAR(50) NOT NULL UNIQUE,
discount DECIMAL(5, 2) NOT NULL,
start_date DATETIME NOT NULL,
end_date DATETIME NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for wishlist
CREATE TABLE wishlist (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
product_id INT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE,
FOREIGN KEY (product_id) REFERENCES products(id) ON DELETE CASCADE
);

2. File and Folder Structure


ecommerce_website/

├── config/
│ └── db.php

├── public/
│ ├── index.php
│ ├── login.php
│ ├── register.php
│ ├── dashboard.php
│ ├── products.php
│ ├── product_detail.php
│ ├── cart.php
│ ├── checkout.php
│ ├── orders.php
│ ├── wishlist.php
│ ├── admin_dashboard.php
│ └── promotions.php

├── includes/
│ ├── header.php
│ ├── footer.php
│ └── functions.php

├── assets/
│ ├── css/
│ │ └── styles.css
│ ├── js/
│ │ └── scripts.js
│ └── images/

└── vendor
└── (Bootstrap and other libraries)

3. Layout Based Design with Bootstrap 5

Header (includes/header.php)


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<title>E-Commerce Website</title>
</head>
<body>
<div class="container">
<header class="my-4">
<h1>E-Commerce Website</h1>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.php">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="products.php">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cart.php">Cart</a>
</li>
<li class="nav-item">
<a class="nav-link" href="wishlist.php">Wishlist</a>
</li>
<li class="nav-item">
<a class="nav-link" href="orders.php">Orders</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="register.php">Register</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="my-4">

Footer (includes/footer.php)


</main>
<footer class="text-center my-4">
<p>© 2023 E-Commerce Website. All rights reserved.</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

4. PHP Code for User Authentication

Registration (public/register.php)


<?php
require '../config/db.php';
require '../includes/header.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$username = $_POST['username'];
$email = $_POST['email'];
$password = password_hash($_POST['password'], PASSWORD_DEFAULT);
$role = $_POST['role'];
$stmt = $conn->prepare("INSERT INTO users (username, email, password, role) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $username, $email, $password, $role);
$stmt->execute();
$stmt->close();
header("Location: login.php");
}
?>
<form method="POST" action="">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<div class="mb-3">
<label for="role" class="form-label">Role</label>
<select class="form-select" id="role" name="role">
<option value="customer">Customer</option>
<option value="admin">Admin</option>
<option value="vendor">Vendor</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Register</button>
</form>
<?php require '../includes/footer.php'; ?>

Login (public/login.php)


<?php
session_start();
require '../config/db .php';
require '../includes/header.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$username = $_POST['username'];
$password = $_POST['password'];
$stmt = $conn->prepare("SELECT * FROM users WHERE username = ?");
$stmt->bind_param("s", $username);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
if ($user && password_verify($password, $user['password'])) {
$_SESSION['user_id'] = $user['id'];
$_SESSION['role'] = $user['role'];
header("Location: dashboard.php");
} else {
echo "Invalid credentials.";
}
}
?>
<form method="POST" action="">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
<?php require '../includes/footer.php'; ?>

5. Additional PHP Scripts

Dashboard (public/dashboard.php)


<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT * FROM users WHERE id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
?>
<h2>Welcome, <?php echo $user['username']; ?></h2>
<p>Your role: <?php echo ucfirst($user['role']); ?></p>
<?php require '../includes/footer.php'; ?>

Products (public/products.php)


<?php
require '../config/db.php';
require '../includes/header.php';
$stmt = $conn->prepare("SELECT * FROM products");
$stmt->execute();
$result = $stmt->get_result();
$products = $result->fetch_all(MYSQLI_ASSOC);
?>
<h3>Products</h3>
<div class="row">
<?php foreach ($products as $product): ?>
<div class="col-md-4">
<div class="card mb-4">
<img src="assets/images/<?php echo $product['id']; ?>.jpg" class="card-img-top" alt="<?php echo $product['name']; ?>">
<div class="card-body">
<h5 class="card-title"><?php echo $product['name']; ?></h5>
<p class="card-text"><?php echo $product['description']; ?></p>
<p class="card-text">$<?php echo $product['price']; ?></p>
<a href="product_detail.php?id=<?php echo $product['id']; ?>" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
<?php require '../includes/footer.php'; ?>

Product Detail (public/product_detail.php)


<?php
require '../config/db.php';
require '../includes/header.php';
$product_id = $_GET['id'];
$stmt = $conn->prepare("SELECT * FROM products WHERE id = ?");
$stmt->bind_param("i", $product_id);
$stmt->execute();
$result = $stmt->get_result();
$product = $result->fetch_assoc();
?>
<h3><?php echo $product['name']; ?></h3>
<p><?php echo $product['description']; ?></p>
<p>Price: $<?php echo $product['price']; ?></p>
<p>Stock: <?php echo $product['stock']; ?></p>
<form method="POST" action="cart.php">
<input type="hidden" name="product_id" value="<?php echo $product['id']; ?>">
<div class="mb-3">
<label for="quantity" class="form-label">Quantity</label>
<input type="number" class="form-control" id="quantity" name="quantity" min="1" max="<?php echo $product['stock']; ?>" required>
</div>
<button type="submit" class="btn btn-primary">Add to Cart</button>
</form>
<?php require '../includes/footer.php'; ?>

Cart (public/cart.php)


<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT shopping_cart.*, products.name, products.price FROM shopping_cart JOIN products ON shopping_cart.product_id = products.id WHERE shopping_cart.user_id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$cart_items = $result->fetch_all(MYSQLI_ASSOC);
?>
<h3>Your Shopping Cart</h3>
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php $total_cost = 0; ?>
<?php foreach ($cart_items as $item): ?>
<tr>
<td><?php echo $item['name']; ?></td>
<td>$<?php echo $item['price']; ?></td>
<td><?php echo $item['quantity']; ?></td>
<td>$<?php echo $item['price'] * $item['quantity']; ?></td>
<td>
<form method="POST" action="remove_from_cart.php">
<input type="hidden" name="cart_id" value="<?php echo $item['id']; ?>">
<button type="submit" class="btn btn-danger">Remove</button>
</form>
</td>
</tr>
<?php $total_cost += $item['price'] * $item['quantity']; ?>
<?php endforeach; ?>
</tbody>
</table>
<h4>Total Cost: $<?php echo $total_cost; ?></h4>
<a href="checkout.php" class="btn btn-success">Proceed to Checkout</a>
<?php require '../includes/footer.php'; ?>

Checkout (public/checkout.php)


<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT shopping_cart.*, products.name, products.price FROM shopping_cart JOIN products ON shopping_cart.product_id = products.id WHERE shopping_cart.user_id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$cart_items = $result->fetch_all(MYSQLI_ASSOC);
$total_cost = 0;
foreach ($cart_items as $item) {
$total_cost += $item['price'] * $item['quantity'];
}
?>
<h3>Checkout</h3>
<form method="POST" action="process_order.php">
<h4>Order Summary</h4>
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<?php foreach ($cart_items as $item): ?>
<tr>
<td><?php echo $item['name']; ?></td>
<td>$<?php echo $item['price']; ?></td>
<td><?php echo $item['quantity']; ?></td>
<td>$<?php echo $item['price'] * $item['quantity']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h4>Total Cost: $<?php echo $total_cost; ?></h4>
<div class="mb-3">
<label for="shipping_address" class="form-label">Shipping Address</label>
<input type="text" class="form-control" id="shipping_address" name="shipping_address" required>
</div>
<button type="submit" class="btn btn-primary">Confirm Order</button>
</form>
<?php require '../includes/footer.php'; ?>

Process Order (public/process_order.php)


<?php
session_start();
require '../config/db.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$total = $_POST['total'];
$shipping_address = $_POST['shipping_address'];
// Create order
$stmt = $conn->prepare("INSERT INTO orders (user_id, total, status) VALUES (?, ?, 'pending')");
$stmt->bind_param("id", $user_id, $total);
$stmt->execute();
$order_id = $stmt->insert_id;
$stmt->close();
// Add order items
foreach ($_SESSION['cart'] as $item) {
$stmt = $conn->prepare("INSERT INTO order_items (order_id, product_id, quantity, price) VALUES (?, ?, ?, ?)");
$stmt->bind_param("iiid", $order_id, $item['product_id'], $item['quantity'], $item['price']);
$stmt->execute();
$stmt->close();
}
// Clear the shopping cart
$stmt = $conn->prepare("DELETE FROM shopping_cart WHERE user_id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$stmt->close();
header("Location: orders.php");
?>

Orders (public/orders.php)

<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT * FROM orders WHERE user_id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$orders = $result->fetch_all(MYSQLI_ASSOC);
?>
<h3>Your Orders</h3>
<table class="table">
<thead>
<tr>
<th>Order ID</th>
<th>Total</th>
<th>Status</th>
<th>Created At</th>
</tr>
</thead>
<tbody>
<?php foreach ($orders as $order): ?>
<tr>
<td><?php echo $order['id']; ?></td>
<td>$<?php echo $order['total']; ?></td>
<td><?php echo ucfirst($order['status']); ?></td>
<td><?php echo $order['created_at']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php require '../includes/footer.php'; ?>

Wishlist (public/wishlist.php)


<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT wishlist.*, products.name, products.price FROM wishlist JOIN products ON wishlist.product_id = products.id WHERE wishlist.user_id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$wishlist_items = $result->fetch_all(MYSQLI_ASSOC);
?>
<h3>Your Wishlist</h3>
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>Price</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($wishlist_items as $item): ?>
<tr>
<td><?php echo $item['name']; ?></td>
<td>$<?php echo $item['price']; ?></td>
<td>
<form method="POST" action="add_to_cart.php">
<input type="hidden" name="product_id" value="<?php echo $item['product_id']; ?>">
<button type="submit" class="btn btn-success">Add to Cart</button>
</form>
<form method="POST" action="remove_from_wishlist.php">
<input type="hidden" name="wishlist_id" value="<?php echo $item['id']; ?>">
<button type="submit" class="btn btn-danger">Remove</button>
</form>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php require '../includes/footer.php'; ?>

Promotions (public/promotions.php)


<?php
require '../config/db.php';
require '../includes/header.php';
$stmt = $conn->prepare("SELECT * FROM promotions");
$stmt->execute();
$result = $stmt->get_result();
$promotions = $result->fetch_all(MY SQLI_ASSOC);
?>
<h3>Promotions and Discounts</h3>
<table class="table">
<thead>
<tr>
<th>Code</th>
<th>Discount (%)</th>
<th>Start Date</th>
<th>End Date</th>
</tr>
</thead>
<tbody>
<?php foreach ($promotions as $promo): ?>
<tr>
<td><?php echo $promo['code']; ?></td>
<td><?php echo $promo['discount']; ?></td>
<td><?php echo $promo['start_date']; ?></td>
<td><?php echo $promo['end_date']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php require '../includes/footer.php'; ?>

6. Additional Features to Consider

User Profile Management: Allow users to update their profile information and change passwords.

Advanced Search and Filtering: Implement more sophisticated search algorithms and filtering options for products.

Email Notifications: Send email notifications for order confirmations, shipping updates, and promotional offers.

Mobile Responsiveness: Ensure the website is fully responsive and optimized for mobile devices.

7. Security Measures

Input Validation: Validate all user inputs to prevent SQL injection and XSS attacks.

HTTPS: Use HTTPS to secure data transmission between the client and server.

Session Security: Implement measures to protect user sessions, such as session timeouts and regeneration.

8. Testing and Deployment

Unit Testing: Conduct unit tests for individual components to ensure they function correctly.

Integration Testing: Test the integration of different modules to ensure they work together seamlessly.

Deployment: Choose a reliable hosting provider and deploy the application, ensuring all configurations are optimized for performance.

9. Documentation

User Documentation: Create a user manual to guide users through the website's features and functionalities.

Developer Documentation: Document the codebase and architecture for future reference and maintenance.

10. Future Enhancements

AI-Powered Recommendations: Implement machine learning algorithms to provide personalized product recommendations.

Loyalty Programs: Develop a loyalty program to reward repeat customers with discounts and special offers.

Social Media Integration: Allow users to share products on social media platforms to increase visibility and engagement.

This structured approach will help you build a comprehensive E-Commerce Website that meets the needs of users and adapts to future requirements.