Welcome to the E-Commerce Platform project! This project aims to create a user-friendly online shopping experience for customers. It provides various features such as browsing sale products, viewing top buying products, categorizing products, adding products to a cart, and making purchases securely. The platform also supports user authentication for customers and provides admin functionalities for managing products.
Introducing an optimized search bar that allows users to search all products listed on our site. Users can easily find products by entering relevant keywords.
The E-Commerce Platform project uses a MySQL database to manage various aspects of the platform. Here is an overview of the key tables and their relationships in the database:
Stores information about customers, including their names, email, phone number, addresses, and passwords.
Contains different product categories to organize the products effectively.
Holds information about individual products, including their names, categories, prices, quantities, image URLs, and details.
Represents individual shopping carts associated with customers.
Stores items that customers have added to their carts. Includes information about the product ID, quantity, and price.
Tracks order information, including the order date, total amount, and order status.
Stores information about individual items within an order, including product ID, quantity, and price.
Associates customers with admin privileges, allowing them to manage products.
Stores informations about tracking numbers and tracking company
The provided database schema is designed to support the various features of the E-Commerce Platform, such as product browsing, cart management, and order processing. It includes primary keys, foreign keys, and relationships between tables to ensure data integrity and consistency.
To integrate this schema into your project, make sure to configure your PHP scripts to interact with the database for operations like fetching data, inserting new records, updating quantities, and more.
#