
Create new pages for the PHP and MySQL shopping cart, set up navigation, copy templates, and display product cards to support a smoother checkout flow.
Improve the login page design for an e-commerce site built with PHP and MySQL by applying header and footer templates, centering elements, and customizing layout to fit requirements.
Plan all admin pages for the e-commerce shopping cart site, organizing categories, links, and cards to support front page display and current operations.
Plan and create database tables for the e-commerce cart, including a user login table with username and email, a product table with price and description, and the three main tables.
Demonstrates checking login functionality and handling error displays in a PHP & MySQL e-commerce shopping cart, including session creation and verifying user login status.
Display and manage messages on category CRUD pages. Handle alerts and ensure correct category operations in a PHP and MySQL e-commerce shopping cart site.
Display product images stored in the database on the edit product page, implement image upload, and manage image display within a PHP and MySQL e-commerce cart site.
delete the product image from the edit product page and update the database to reflect removal, ensuring the image field can be blank and the page remains consistent.
Re-upload an image on the edit product page and ensure the correct image is linked to the product, with proper naming and updates in PHP and MySQL.
Display all products on the index page by fetching items from the database and organizing them by category, using a PHP while loop to render the product list.
Display category-based products on the index page by filtering items to show only those from a chosen category in a php and mysql shopping cart site.
Implement adding items to the shopping cart from the home page and category page, manage item quantities via sessions, and display cart contents to guide purchasing.
Learn how to add items to a shopping cart directly from a single product page in a PHP and MySQL e-commerce site, including managing quantity and cart integration.
Display cart session items on the cart page, calculate the total price from quantity and price, and present the results in a PHP and MySQL shopping cart.
Explore cart page enhancements in a PHP and MySQL e-commerce site, including calculating total price by quantity, validating line items, and ensuring proper checkout flow.
Learn how to delete items from the cart session in a PHP and MySQL e-commerce site, including session handling, item removal, and updating the cart state.
Here I'm going to build a Shopping Cart with these features
In FrontEnd Displaying Products and home page and displaying products with categories. Next adding to products cart from home page category page and adding product to cart in multiple quantity from single product page.
Next is displaying products added to cart in cart page and also in drop-down menu with checkout link.
While user goes to checkout page after adding products to cart. We will check user logged in or not?
If user logged in we will allow him to checkout page or else he will be prompted to login or register.
If he is a new user, he should register. If he is not a new user, he can login with his login credentials.
In checkout page, if the user already has billing details. It will be displayed or else user will be prompted to enter billing details.
After that user can choose the payment method and accept the terms his order will be placed. For now, I'm using only Cash On Delivery method.
If we use payment gateways, user will be redirected to payment gateway. If he pays we will store transaction id and other information from payment gateway provider into our database.
Customer can submit reviews to product, customer can submit only one review per product.
Customer can cancel his order. Also customer can update his or her address from my account page.
Customer can check all the orders from my account page. And also view single orders from single order view page.
Wishlist for customer to add products to wishlist and remove products from wishlist.
In Back End Admin Area, Admin User will be able to login and add, edit & delete products. And also admin user can check the orders. Go through the list of customers and go through all the reviews submitted by customers.
Order Processing from backend, admin can process the order in 4 different stages one is Order Placed, Order In Progress, Order Dispatched, and Order Delivered.
A lot more features are included.