0% found this document useful (0 votes)
74 views7 pages

Online Shopping Application: (Paul Store)

This document provides a progress report on the development of an online shopping application called Paul Store. It discusses the development of the application in three chapters. Chapter 1 introduces the application and its objectives. Chapter 2 discusses the modules developed so far, including the admin and user modules. The admin module allows admin to add, delete, and modify products and categories. The user module allows users to shop for products online. Chapter 3 provides code snippets and screenshots of the admin page and user homepage. The application is being developed using PHP for the front-end and MySQL for the back-end.

Uploaded by

Drishti Gupta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views7 pages

Online Shopping Application: (Paul Store)

This document provides a progress report on the development of an online shopping application called Paul Store. It discusses the development of the application in three chapters. Chapter 1 introduces the application and its objectives. Chapter 2 discusses the modules developed so far, including the admin and user modules. The admin module allows admin to add, delete, and modify products and categories. The user module allows users to shop for products online. Chapter 3 provides code snippets and screenshots of the admin page and user homepage. The application is being developed using PHP for the front-end and MySQL for the back-end.

Uploaded by

Drishti Gupta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

ONLINE SHOPPING APPLICATION

(PAUL STORE)
PROGRESS REPORT
OF MAJOR PROJECT

Submitted in the partial fulfillment of the requirements for the


award of degree

BACHELOR OF TECHNOLOGY
IN
COMPUTER SCIENCE AND ENGINEERING

Submitted By:- Guided By:-


Drishti (8716113) Mr. Ved Prakash
(AP CSE)

Submitted To:
Computer Science & Engineering Department
State Institute of Engineering & Technology, Nilokheri (Karnal) – 132117
Kurukshetra University, Kurukshetra
CHAPTER-1
INTRODUCTION
Online Shopping System(PAUL STORE) is the simple shopping solution. It’s a full-featured
website and shopping cart system that bends over backwards to give you the flexibility you
need to run your online store. This project is a web based shopping system for an existing
shop. The project objective is to deliver the online shopping application.

The basic concept of the application is to allow the customer to shop virtually using the
Internet and allow customers to buy the items and articles of their desire from the store. The
information pertaining to the products are store on an RDBMS at the server side(store).The
server process the customers and the items are shipped to the address submitted by them. The
details of the items are brought forward from the database for the customer view based on the
selection through the menu and database of all products are updated at the end of each
transaction.

Online shopping is the process whereby consumers directly buy goods or services from a
seller in real-time, without an intermediary service, over the Internet. It is a form of electronic
commerce. The process is called business-to-consumer (B2C) online shopping.

The Project entitled "PAUL STORE" is a web-based application Software developed in PHP
LANGUAGE using PHP as front end and MYSQL as backend.

The main aim of "PAUL STORE" is to improve the services of Customers and vendors. It
maintains the details of customer payments, product receipts, addition of new customers,
products and also updating, deletion for the same. It also stores the details of invoices
generated by customer and payments made by them with all Payments details like credit card.

The main aim of "PAUL STORE" is to improve the services of Customers and vendors. It
maintains the details of customer payments, product receipts, addition of new customers,
products and also updating, deletion for the same. It also stores the details of invoices
generated by customer and payments made by them with all Payments details like credit card.

The primary features of the project entitled "PAUL STORE" are high accuracy, design
flexibility and easy availability. And also it uses database tables Representing entities and
relationships between entities.

The application was designed into two modules first for the customers(USER) who wish to
buy the articles. Second is for the storekeepers(ADMIN) who maintains and updates the
information pertaining to the articles and those of the customers.
CHAPTER-2
PROGRESS REPORT OF PROJECT WORK
The project entitled “PAUL STORE” mainly broken into following modules.
1. Admin module
2. User module
3. Purchase module
4. Payment module
5. Validation and Security

These modules are meant to perform different functionality for the Admin end and User end.
At the time, I have done with Admin Window and somewhat about user window.

ADMIN MODULE :-
LINK FOR ADMIN : http://localhost/paul_store/admin/

FUNCTIONALITY OF ADMIN:

 Admin LOGIN using username and password.


 Admin can change the password and need to enter old password then new password
with confirm password.
 Admin is one who can add, delete or modified the products.
 And he/she can add CATEGORY, SUBCATEGORY and PRODUCT .
 Admin is the one having overall control of the website.
 Only Admin comes to know about the order placed on the site and ensure the delivery
of the product at time.
 Administrator of Shopping Cart System has multiple features such as Add, Delete, Update
shopping Items.

USER MODULE :-
LINK OF WEBSITE FOR USER: http://localhost/paul_store/

FUNCTIONALITY OF USER:

 This is a public link of the website used by the user for shopping purpose.
 Firstly user need to Login the account to order the product from the website if he/she
is not register then he/she cannot login firstly need to register the user , Otherwise, he
or she (user) can see the products on the site but cannot order them.
 User can select amy category wise products.
 Both online payment methods and cash on delivery will be available to make a
transaction.
CHAPTER-3
CODING & SNAPSHOT
3.1 admin.php
<?php

include("header.php");

?>

<!-- partial -->

<div class="main-panel">

<div class="row">

<div class="col-lg-7 grid-margin stretch-card col-lg-12">

<!--weather card-->

<div class="card card-weather">

<div class="card-body">

<div class="weather-date-location mt-5">

<h3><?php echo date("l"); ?> </h3>

<b class="text-dark">

<span class="weather-date"><?php echo date("d-m-y"); ?></span>

<span class="weather-location">(India)</span>

</b>

</div>

<div class="weather-data d-flex">

<div class="mr-auto mt-5">

<h4 class="mt-5">

<?php

//echo time("H:i:s");

?>

</h4>
</div>

</div>

</div>

<div class="card-body p-0">

<div class="d-flex weakly-weather">

<div class="weakly-weather-item">

<p class="mb-0">

Sun

</p>

<i class="mdi mdi-weather-cloudy"></i>

<p class="mb-0">

30°

</p>

</div>

</div>

</div>

</div>

<!--weather card ends-->

</div>

</div>

<?php

include("footer.php");

?>
3.2 Admin Window
http://localhost/jobsite/admin/
3.3 User End
http://localhost/jobsite/employee/

You might also like