
Discover the final output of an e-commerce system built with PHP and MySQL, including a login dashboard, a multi-quantity shopping cart, product pages with related items, checkout, and a wishlist.
Set up the project environment by creating a new project, configuring templates, and launching a local host for initial blank page in a PHP and MySQL e-commerce shopping cart site.
Explore project HTML files for a PHP and MySQL ecommerce site, including login, single product page, cart, check-out, and product listing on the index page, with a drop-down cart display.
Set up html files and create template files to establish the page hierarchy for a php and mysql e-commerce shopping cart, including integrating the logo, navigation, and reusable templates.
Enhance your e-commerce shopping cart site by refining template files and organizing the main content sections, center column layout, and interactions.
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.
Create shop pages in our PHP and MySQL project using template files and navigation. Plan all files in a single base and prepare pages for the next session.
Learn how to create and organize admin templates and login page files for a PHP and MySQL e-commerce shopping cart, including navigation, file structure, and template usage.
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.
Create the required admin area pages and organize project files for the e-commerce site. Manage a logo and font assets, and set up sessions to support categories and identity.
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.
Create database tables for an e-commerce cart by defining columns, set an auto-increment id, and organize table structure for records.
Connect to a database using PHP, configure the hostname and local environment, and perform insert operations to build an e-commerce shopping cart.
Add login functionality to a PHP and MySQL e-commerce site by handling user input through forms, posting data to a database, and managing submissions.
Demonstrates checking login functionality and handling error displays in a PHP & MySQL e-commerce shopping cart, including session creation and verifying user login status.
Learn to check login on all admin pages for a PHP & MySQL e-commerce shopping cart, using sessions to manage admin access and protect sensitive pages.
Develop the add category page, implement create and delete operations on the category table, and display the category list in the PHP & MySQL e-commerce cart site.
Explore how to display categories on the view category page within a PHP and MySQL powered e-commerce shopping cart.
Learn how to edit a category in a PHP and MySQL powered ecommerce site, including updating category data, managing the update query, and reflecting changes in the category display.
Learn how to implement delete category in a php & MySQL e-commerce shopping cart, including user authentication checks, access control, and updating the category list with live feedback.
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.
Learn to create add and view product pages by fetching product categories from the database and displaying them with consistent pricing and sizing in the shopping cart interface.
Create a product in your PHP and MySQL powered e-commerce site, defining its name, description, and attributes while integrating with the shopping cart workflow.
Add image upload to the create product page, managing the file location, size limits, and allowed extensions while addressing permissions and displaying success or failure messages.
Fix file upload issues and upload your first product with image in a PHP and MySQL powered e-commerce cart.
Explore how to view products on an e-commerce shopping cart site built with PHP and MySQL, aligning with the course goals of practical development.
Fetch and display product information on the edit product page, including price and description, using a clean selector to support accurate updates in the PHP and MySQL e-commerce setup.
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.
Update product information through the edit product page in a PHP and MySQL e-commerce shopping cart, illustrating practical steps and data handling for accurate listings.
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.
Delete a product image on the edit product page in a PHP and MySQL e-commerce site, continuing the tutorial and ensuring seamless image removal within the shopping cart workflow.
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.
Demonstrate delete product page tasks within a PHP & MySQL e-commerce site, showing how to remove a file and reflect changes on the page.
Add dummy products to test the shopping cart and fix issues in a PHP and MySQL e-commerce setup.
Add dummy products to the php and mysql shopping cart and fix ongoing display and messaging issues on the page.
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.
Create and refine a single product page in a PHP and MySQL e-commerce site, displaying product details such as image, description, price, currency, and related items in the same category.
Display related products on the single product page in a PHP and MySQL e-commerce 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.
Loop through the session cart on the cart page to display items and their quantities, using session data to manage cart contents in PHP and MySQL.
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.
Display cart items in a menu dropdown by looping through the cart data, showing the total item count and subtotals, using session data.
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.