EazyBuy

Full-stack ecommerce application that features a user registration system, order tracking, product reviews, and payment processing.

Best Sellers

The top 10 most frequently sold products are selected from each category and displayed to the user.

Product Categories

Customized filters are available for each product category which allows the user to narrow their query for products stored in the database.

User Cart

The user’s cart view shows products that have been added to the cart. The total item count and total price are each dynamically updated using AJAX. When checkout is initiated the PHP PayPal SDK is used the facilitate the transaction.

Orders

A transaction history is stored in the database to track which products a user has purchased. The unique order id, item name, product quantity, and order total are displayed for each order and sorted by the last order date.

Product Reviews

For any given product in an order, the user may leave a review. This review is dynamically rendered for others to view under the summary view of the product.

Product Summary

When a product is selected by the user, the corresponding details are dynamically retrieved from the database. Reviews that were made by customers who have already purchased the item are also displayed below the product.

PayPal SDK

The PHP PayPal SDK is used to process and execute a transaction on checkout. A summary is also provided of each item that the user had in their cart upon initiating checkout. In order to securely complete each transaction, the processing and execution are each handled on the server.

User Registration System

The user registration system requires a user to login before completing a transaction. When a new account is created, the details are inserted into appropriate database table. Otherwise, if the user signs in, credentials are validated against data already stored in the database. Passwords that are stored in the database are encrypted using the bcrypt algorithm.