Friday, March 23, 2018

Online Shopping Project In PHP

Online Shopping Project In PHP with source code free download.


this project is about online shopping  so we have all the functionally that are required for the online shopping system.

in this we have two part first one is user side and second one is admin side.

user can do register after the login user can order the product view their profile manage cart and view products and category.

at the admin side admin manage user,manage product ,manage category all the required functionality are available in this project.


following are the table of the online shopping project:-


  1. Admin_login

  1. User_registration

  1. Cate

  1. Sub_cate

  1. Product

  1. User_order

  1. Order_manage

  1. Contact_us

  1. Feedback

following are the functionality and features of the online shopping  project

Client :-



 

User Login:

           
From here any valid user can enter into the site. Here user has to give User Name and Password which are provided at the registration time. These will compared with the database, if match entry found then user can enter into the site. If the entry will not matched then user get the error message and will have to re-enter the User Name and Password again.

 Product Information:


User can view all the information about our all product see image, price, description etc.  


Cart:

 

The cart page allows users to  display all the selected items and also give a facility to add or remove more items to the cart.


Feedback:


The Feedback page gives the facility for the users to provide their review on our  products or give any suggestions.

Contact us:


From this page we give facility to user for contact us.






Admin :-


This is Home page for the Admin; here admin can access all other pages. They also get the list of the Tables in this page.


 User:


This page allows administrator to sign in for administration.He can view all visited user’s list, order details & insert products.
          Data will be store in one table User.

Insert Product:


Administrator can enter newly available products & items.            
Data will be store in product table.

 Order Detail:


Administrator  can see the pending & also delievered order list in this page.
Data will be store in order_details able.



 Feedback:


In this Page Administrator can see all the Feedbacks provided by the Users and can delete as well after processing on it.
         Data will be used from one table Feedback.



Online Shopping Project In PHP
HOME PAGE



Online Shopping Project In PHP
ADMIN DASHBOARD

No comments:

Post a Comment

Generate Even Numbers in a Range In PHP.

$start = 1; $end = 20; for ($i = $start; $i <= $end; $i++) {     if ($i % 2 == 0) {         echo $i . " is even.<br>";   ...