Movers and Packers Management System
Movers and Packers Management System
Movers and Packers Management System
Chapter 1
1. INTRODUCTION
Provide an interactive platform between clients and packers and Movers Company.
1|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
documents, and tasks. It also maintenance the team information and also efforts estimation.
Hardware Requirement
RAM: 256 MB
CD Drive
2|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Chapter 2
2. DESIGN
2.1 Schema Diagram
3|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
4|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
5|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
6|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
7|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
8|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Chapter 3
3. IMPLEMENTATION
3.1 Description of tables
v mpmsdb tbladmin
ID : int(10)
AdminName : varchar(50)
UserName : varchar(50)
MobileNumber : bigint(10)
Email : varchar(120)
Password : varchar(200)
AdminRegdate : timestamp
v mpmsdb tblcontact
ID : int(10)
Name : varchar(200)
Telephone : bigint(10)
Email : varchar(120)
Subject : mediumtext
Message : mediumtext
RequestDate : timestamp
IsRead : int(5)
v mpmsdb tblpage
ID : int(10)
PageType : varchar(50)
PageTitle : mediumtext
PageDescription : mediumtext
Email : varchar(120)
MobileNumber : bigint(10)
UpdationDate : timestamp
9|Page
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
v mpmsdb tblservices
ID : int(10)
Title : varchar(200)
Description : mediumtext
Image : varchar(200)
CreationDate : timestamp
v mpmsdb tbluser
ID : int(10)
Name : varchar(120)
MobileNumber : bigint(10)
Email : varchar(200)
Location : varchar(200)
ShiftingLoc : varchar(200)
ShiftingDate : varchar(200)
BreifItems : mediumtext
Items : mediumtext
Professional : varchar(200)
RequestDate : timestamp
Remark : varchar(200)
Status : varchar(50)
UpdationDate : timestamp
10 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
PHPMyAdmin
PHPMyAdmin is an open source tool written in PHP intended to handle the administration of
MySQL over the World Wide Web. PHPMyAdmin supports a wide range of operations with
MySQL. Currently it can create and drop databases, create/drop/alter tables, delete/edit/add
fields, execute any SQL statement, manage users and permissions, and manage keys on fields.
while you still have the ability to directly execute any SQL statement. PHPMyAdmin can
manage a whole MySQL server (needs a super-user) as well as a single database. To accomplish
the latter, you’ll need a properly set up MySQL user who can read/write only the desired
database. It’s up to you to look up the appropriate part in the MySQL manual
3.2.2 Normalization
Normalization is the process of efficiently organizing data in a database. There are two
goals of the normalization process: eliminating redundant data (for example, storing the same
data in more than one table) and ensuring data dependencies make sense (only storing related
data in a table). Both of these are worthy goals as they reduce the amount of space a database
consumes and ensure that data is logically stored. There are several benefits for using
Normalization in Database.
11 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Benefits
First normal form (1NF) sets the very basic rules for an organized database:
• Eliminate duplicative columns from the same table.
• Create separate tables for each group of related data and identify each row with
unique column or set of columns (the primary key).
• Remove repetitive groups
• Create Primary Key
Before we proceed let's understand a few things -- A KEY is a value used to identify a record in
a table uniquely. A KEY could be a single column or combination of multiple columns Note:
Columns in a table that are NOT used to identify a record uniquely are called non-key columns.
Primary Key
Second normal form(2NF) further address the concept of removing duplicative data:
12 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
If PK is composed of multiple columns, then all non-key attributes should be derived from FULL
PK only. If some non-key attribute can be derived from partial PK then remove it. The 4NF also
known as BCNF NF.
3.31 Algorithms
Index
1. Display options home page and quotation page for the new booking.
2. Link corresponding pages to them.
Register
1. Connect to database.
2. Read customers’ name, email, phone number, address.
3. Check if any of the field is null.
4. If any of the field is null then,
5. Display warning message.
6. Else insert the values into the corresponding table and show successfully registered.
13 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Admin login
1. Connect to database.
2. Read admin name and password using post method.
3. If the entered values are correct then,
4. Redirect to admin operation.
5. Else show error message.
Admin operations
View customers:
1. Connect to database.
2. Retrieve the customers’ name, email, phone number, address from the corresponding
table.
3. Display the details in the form of table.
View Bookings
1. Connect to database.
2. Retrieve the location shift from, location shift to, brief of items, items to be shift, and date of
shifting from the corresponding table.
3. Display the details in the form of table.
View payment
1. Connect to database.
2. Retrieve the payment amount and payment type.
3. Display the details in the form of table.
14 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Chapter 4
4.1 Snapshots
15 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
16 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Fig.4.3 About Us
17 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
19 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
20 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
21 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
22 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
23 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
24 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
25 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
26 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
27 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
4.2 Discussion
Project use: It is used in door to door services of shifting your goods. It is used by packers and movers to
move your heavy furniture, heavy electronic item.
Safety: The main concern while relocating is the safety of the goods and packers and movers in Pune
provides that only. They pack the goods with right packing method and in appropriate container that
prevents the goods from damages.
Insurance: One of the best benefits is the insurance that a reliable moving company does for the safety
of the goods against damages. With this all the losses will be compensated to you if occur any during
relocation.
Convenience: You need to only discuss your requirements and demands regarding moving and shifting
and the rest will be handle by the packers and movers. You need not to put any efforts in the shifting
process rather you can simply enjoy hassle free move with them by just seeing them working as per
needs and demands.
Cost Effective: If you will follow the DIY process you could cost a lot for labor costing, transportation
charges, packaging materials etc. but with packers and movers in Pune you only have to pay their fee
that is much lesser than the DIY process expenses.
28 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21
Movers and Packers Management System
Chapter 5
Conclusion
The project titled as Movers & Packers Management System was deeply studied and analyzed to
design the code and implement. It was done under the guidance of the experienced project guide.
All the current requirements and possibilities have been taken care during the project time.
Movers & Packers Management System is used for daily operations in any organization to
maintain or access employee related information for internal administration purposes.
Future Enhancement
Chapter 6
6. REFERENCES
29 | P a g e
Dept. of CSE, BGSIT, B.G NAGAR 2020-21