SlideShare a Scribd company logo
1 of 16
Download to read offline
1 | P a g e 
IS 631 101 – Enterprise Database Management 
Project on 
VOTER MANAGEMENT SYSTEM 
Project by:- 
Tejas Omprakash Agarwal 
Date: 13th December 2013
2 | P a g e 
CONTENTS 
Page No. 
 INTRODUCTION 3 
 BUSINESS RULES 4 
 ENTITIES 5 
 INITIAL ER DIAGRAM 7 
 FINAL EER DIAGRAM 8 
 DATA DICTIONARY 9 
 QUERIES 10 
 SCREEN SHOTS OF SYSTEM 13
3 | P a g e 
INTRODUCTION 
Voter Management System project is a web based application which is used to store, maintain and analyse the information of voters. 
Scope: 
 To maintain (ADD, EDIT, DELETE) data of the voters 
 Track voters voting records 
 Sort voters by Surname, Building Name 
 Select and Print records 
 Find Duplicate records using voter name 
 Sort voter whose voter based on year of voting 
 Search voter from the records 
Technologies Used: 
Database: MySQL Front-end: EXTJS 4.0, HTML, CSS, and JavaScript
4 | P a g e 
BUSINESS RULES 
 Voter Personnel Details 
 Address of Voters 
 Election Type & Details 
 Add details of Voters 
 Edit details of Voters 
 Delete details of Voters 
 Print & Preview details of Voters 
 Find Duplicate entries of Voter 
 Sort Voter Building wise 
 Sort Voter Last Name wise 
 List of polling station 
 List all the voter who casted their vote in a particular election. 
THESE THINGS ARE RELATED AS FOLLOWS:- 
 Voter is associated with one address and one address can be assigned to many voters 
 Election can have many voters and voters can vote in many election 
 Voter is only assigned to one polling station whereas polling station can have many voters
5 | P a g e 
ENTITIES 
E1. voter_details 
voter_details 
PK voter_id 
voter_name 
voter_gender 
voter_age 
address_id 
polling_id 
email 
voting_status 
election_id 
E2. voter_address 
E3. polling_station 
polling_station 
PK polling_id 
polling_name 
election_id 
polling_pincode
6 | P a g e 
E4. Election 
E5. election_type
7 | P a g e 
INITIAL ER DIAGRAM
8 | P a g e 
FINAL EER DIAGRAM
9 | P a g e 
DATA DICTIONARY Table/Entity Name Attribute Name Type Description Key 
voter_details 
voter_id 
int(144) 
Voter Id 
Primary Key 
voter_name 
varchar(144) 
Voter Name (Last name followed by First Name) 
voter_gender 
text 
Gender 
voter_age 
int(24) 
Age 
email 
varchar(144) 
Email Address 
address_id 
int(144) 
Address Id of Voter 
Foreign Key 1 
polling_id 
int(144) 
Polling station Id 
Foreign Key 2 
voting_status 
varchar(144) 
Voting Status of voter for that year 
election_id 
int(144) 
Election Id corresponding to the election 
Foreign Key 3 
voter_address 
address_id 
int(144) 
Address Id of Voter 
Primary Key 
address_house_no 
varchar(144) 
House/shop number 
address_bldg_name 
varchar(144) 
House Name 
address_street 
varchar(144) 
Street Name 
address_pincode 
int(144) 
Pincode 
address_state 
varchar(144) 
State 
address_country 
varchar(144) 
Country 
polling_station 
polling_id 
int(144) 
Polling Station ID 
Primary Key 
polling_name 
varchar(144) 
Polling Station Name 
polling_pincode 
int(144) 
Polling Station Pincode 
election_id 
int(144) 
Election Id corresponding to the election 
Foreign Key 
election 
election_id 
int(144) 
Election ID 
Primary Key 
election_name 
varchar(144) 
Election Name 
election_year 
int(144) 
Election Year 
election_type 
election_id 
int(144) 
Election Id corresponding to the election 
Primary/Foreign Key 1 
voter_id 
int(144) 
Voter Id corresponding to the voter_details 
Primary/Foreign Key 2
10 | P a g e 
QUERIES 
Display Records Building-wise Query 1 and 2 are used to select distinct building and display voters belonging to that building. 
Query1: SELECT DISTINCT address_bldg_name AS voter_building FROM voter_address 
Query2: SELECT a.voter_id,a.voter_name,a.voter_gender,a.voter_age,a.email,(Select b.address_house_no from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') voter_flatno, (Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') voter_building, (Select b.address_street from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_street, (Select b.address_pincode from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_pincode, (Select b.address_state from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_state, (Select b.address_country from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_country, a.address_id,a.polling_id,a.voting_status FROM voter_details as a, voter_address as b WHERE b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%' AND b.address_id = a.address_id
11 | P a g e 
Delete Records Query 3 is used to delete one or multiple records from the table. 
Query 3: 
DELETE FROM election_type where election_id='1' AND voter_id regexp '".$idstr."‘ 
Display Duplicate Entries Query 4 is used to display duplicate entries of the voter by comparing the name and address. 
Query 4: 
SELECT (Select b.address_house_no from voter_address as b where b.address_id = a.address_id) voter_flatno,(Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id) voter_building,(Select b.address_street from voter_address as b where b.address_id = a.address_id) address_street,(Select b.address_pincode from voter_address as b where b.address_id = a.address_id) address_pincode,(Select b.address_state from voter_address as b where b.address_id = a.address_id) address_state,(Select b.address_country from voter_address as b where b.address_id = a.address_id) address_country, a.address_id,a.polling_id,a.voting_status,a.voter_id,a.voter_gender,a.voter_age,a.email,a.voter_name, COUNT(*) c FROM voter_details AS a GROUP BY voter_name HAVING c > 1 
Show all the records Query 5 is used to display all the records in one tabular format. 
Query 5: SELECT a.voter_id,a.voter_name,a.voter_gender,a.voter_age,a.email,(Select b.address_house_no from voter_address as b where b.address_id = a.address_id) voter_flatno,(Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id) voter_building,(Select b.address_street from voter_address as b where b.address_id = a.address_id) address_street,(Select b.address_pincode from voter_address as b where b.address_id = a.address_id) address_pincode,(Select b.address_state from voter_address as b where b.address_id = a.address_id) address_state,(Select b.address_country from voter_address as b where b.address_id = a.address_id) address_country, a.address_id,a.polling_id,a.voting_status FROM voter_details as a limit $_REQUEST[start],$_REQUEST[limit]
12 | P a g e 
Add records Query 6 is used to insert data into voter_details table. 
Query 6: 
INSERT INTO `voter`.`voter_details` (`voter_id`, `voter_name`,`voter_gender`, `voter_age`,`email`,`election_id`,`polling_id`,`voting_status`) VALUES ('$id', '$f2', '$f5', '$f6','$f7','1','$pincode_check','$f12'); 
Print & Preview records
13 | P a g e 
SCREEN SHOTS 
Screen-shot of complete system. 
Screen-shot of Add panel to insert data.
14 | P a g e 
Screen-shot of Edit panel to edit data. 
Screen-shot to select building and display voters of that building.
15 | P a g e 
Screen-shot to select Surname and display voters of that surname.
16 | P a g e 
Thank You

More Related Content

Similar to Voter Management System Report - Tejas Agarwal

Similar to Voter Management System Report - Tejas Agarwal (8)

2017 Contributing to Open Elections Data using R
2017 Contributing to Open Elections Data using R2017 Contributing to Open Elections Data using R
2017 Contributing to Open Elections Data using R
 
FINAL.pptx
FINAL.pptxFINAL.pptx
FINAL.pptx
 
Feasibility Study on e-Voting System
Feasibility Study on e-Voting SystemFeasibility Study on e-Voting System
Feasibility Study on e-Voting System
 
IRJET- A Survey on: Aadhar Based Dual Authentication Secured E-Voting System
IRJET- A Survey on: Aadhar Based Dual Authentication Secured E-Voting SystemIRJET- A Survey on: Aadhar Based Dual Authentication Secured E-Voting System
IRJET- A Survey on: Aadhar Based Dual Authentication Secured E-Voting System
 
Use the ER Diagram that you created in your Homework Assignment ER .pdf
Use the ER Diagram that you created in your Homework Assignment ER .pdfUse the ER Diagram that you created in your Homework Assignment ER .pdf
Use the ER Diagram that you created in your Homework Assignment ER .pdf
 
Use the ER Diagram that you created in your Homework Assignment ER.pdf
Use the ER Diagram that you created in your Homework Assignment  ER.pdfUse the ER Diagram that you created in your Homework Assignment  ER.pdf
Use the ER Diagram that you created in your Homework Assignment ER.pdf
 
Aadhaar Identity North Presentation
Aadhaar Identity North PresentationAadhaar Identity North Presentation
Aadhaar Identity North Presentation
 
Online rto management system
Online rto management system Online rto management system
Online rto management system
 

More from Tejas Garodia

Business process innovation employee appraisal process - tejas agarwal
Business process innovation   employee appraisal process - tejas agarwalBusiness process innovation   employee appraisal process - tejas agarwal
Business process innovation employee appraisal process - tejas agarwal
Tejas Garodia
 

More from Tejas Garodia (6)

Acc615104 Managerial Accounting Project Report
Acc615104 Managerial Accounting Project ReportAcc615104 Managerial Accounting Project Report
Acc615104 Managerial Accounting Project Report
 
Acct 615 104 Managerial Accounting - Analysis for Investment
Acct 615 104 Managerial Accounting - Analysis for InvestmentAcct 615 104 Managerial Accounting - Analysis for Investment
Acct 615 104 Managerial Accounting - Analysis for Investment
 
Chat Room System using Java Swing
Chat Room System using Java SwingChat Room System using Java Swing
Chat Room System using Java Swing
 
STARBUCKS SelfHelp System - Kiosk System
STARBUCKS SelfHelp System - Kiosk SystemSTARBUCKS SelfHelp System - Kiosk System
STARBUCKS SelfHelp System - Kiosk System
 
Business process innovation employee appraisal process - tejas agarwal
Business process innovation   employee appraisal process - tejas agarwalBusiness process innovation   employee appraisal process - tejas agarwal
Business process innovation employee appraisal process - tejas agarwal
 
Team case for Information System Principles
Team case for Information System PrinciplesTeam case for Information System Principles
Team case for Information System Principles
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Recently uploaded (20)

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 

Voter Management System Report - Tejas Agarwal

  • 1. 1 | P a g e IS 631 101 – Enterprise Database Management Project on VOTER MANAGEMENT SYSTEM Project by:- Tejas Omprakash Agarwal Date: 13th December 2013
  • 2. 2 | P a g e CONTENTS Page No.  INTRODUCTION 3  BUSINESS RULES 4  ENTITIES 5  INITIAL ER DIAGRAM 7  FINAL EER DIAGRAM 8  DATA DICTIONARY 9  QUERIES 10  SCREEN SHOTS OF SYSTEM 13
  • 3. 3 | P a g e INTRODUCTION Voter Management System project is a web based application which is used to store, maintain and analyse the information of voters. Scope:  To maintain (ADD, EDIT, DELETE) data of the voters  Track voters voting records  Sort voters by Surname, Building Name  Select and Print records  Find Duplicate records using voter name  Sort voter whose voter based on year of voting  Search voter from the records Technologies Used: Database: MySQL Front-end: EXTJS 4.0, HTML, CSS, and JavaScript
  • 4. 4 | P a g e BUSINESS RULES  Voter Personnel Details  Address of Voters  Election Type & Details  Add details of Voters  Edit details of Voters  Delete details of Voters  Print & Preview details of Voters  Find Duplicate entries of Voter  Sort Voter Building wise  Sort Voter Last Name wise  List of polling station  List all the voter who casted their vote in a particular election. THESE THINGS ARE RELATED AS FOLLOWS:-  Voter is associated with one address and one address can be assigned to many voters  Election can have many voters and voters can vote in many election  Voter is only assigned to one polling station whereas polling station can have many voters
  • 5. 5 | P a g e ENTITIES E1. voter_details voter_details PK voter_id voter_name voter_gender voter_age address_id polling_id email voting_status election_id E2. voter_address E3. polling_station polling_station PK polling_id polling_name election_id polling_pincode
  • 6. 6 | P a g e E4. Election E5. election_type
  • 7. 7 | P a g e INITIAL ER DIAGRAM
  • 8. 8 | P a g e FINAL EER DIAGRAM
  • 9. 9 | P a g e DATA DICTIONARY Table/Entity Name Attribute Name Type Description Key voter_details voter_id int(144) Voter Id Primary Key voter_name varchar(144) Voter Name (Last name followed by First Name) voter_gender text Gender voter_age int(24) Age email varchar(144) Email Address address_id int(144) Address Id of Voter Foreign Key 1 polling_id int(144) Polling station Id Foreign Key 2 voting_status varchar(144) Voting Status of voter for that year election_id int(144) Election Id corresponding to the election Foreign Key 3 voter_address address_id int(144) Address Id of Voter Primary Key address_house_no varchar(144) House/shop number address_bldg_name varchar(144) House Name address_street varchar(144) Street Name address_pincode int(144) Pincode address_state varchar(144) State address_country varchar(144) Country polling_station polling_id int(144) Polling Station ID Primary Key polling_name varchar(144) Polling Station Name polling_pincode int(144) Polling Station Pincode election_id int(144) Election Id corresponding to the election Foreign Key election election_id int(144) Election ID Primary Key election_name varchar(144) Election Name election_year int(144) Election Year election_type election_id int(144) Election Id corresponding to the election Primary/Foreign Key 1 voter_id int(144) Voter Id corresponding to the voter_details Primary/Foreign Key 2
  • 10. 10 | P a g e QUERIES Display Records Building-wise Query 1 and 2 are used to select distinct building and display voters belonging to that building. Query1: SELECT DISTINCT address_bldg_name AS voter_building FROM voter_address Query2: SELECT a.voter_id,a.voter_name,a.voter_gender,a.voter_age,a.email,(Select b.address_house_no from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') voter_flatno, (Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') voter_building, (Select b.address_street from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_street, (Select b.address_pincode from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_pincode, (Select b.address_state from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_state, (Select b.address_country from voter_address as b where b.address_id = a.address_id AND b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%') address_country, a.address_id,a.polling_id,a.voting_status FROM voter_details as a, voter_address as b WHERE b.address_bldg_name LIKE '%".$_REQUEST['voter_building']."%' AND b.address_id = a.address_id
  • 11. 11 | P a g e Delete Records Query 3 is used to delete one or multiple records from the table. Query 3: DELETE FROM election_type where election_id='1' AND voter_id regexp '".$idstr."‘ Display Duplicate Entries Query 4 is used to display duplicate entries of the voter by comparing the name and address. Query 4: SELECT (Select b.address_house_no from voter_address as b where b.address_id = a.address_id) voter_flatno,(Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id) voter_building,(Select b.address_street from voter_address as b where b.address_id = a.address_id) address_street,(Select b.address_pincode from voter_address as b where b.address_id = a.address_id) address_pincode,(Select b.address_state from voter_address as b where b.address_id = a.address_id) address_state,(Select b.address_country from voter_address as b where b.address_id = a.address_id) address_country, a.address_id,a.polling_id,a.voting_status,a.voter_id,a.voter_gender,a.voter_age,a.email,a.voter_name, COUNT(*) c FROM voter_details AS a GROUP BY voter_name HAVING c > 1 Show all the records Query 5 is used to display all the records in one tabular format. Query 5: SELECT a.voter_id,a.voter_name,a.voter_gender,a.voter_age,a.email,(Select b.address_house_no from voter_address as b where b.address_id = a.address_id) voter_flatno,(Select b.address_bldg_name from voter_address as b where b.address_id = a.address_id) voter_building,(Select b.address_street from voter_address as b where b.address_id = a.address_id) address_street,(Select b.address_pincode from voter_address as b where b.address_id = a.address_id) address_pincode,(Select b.address_state from voter_address as b where b.address_id = a.address_id) address_state,(Select b.address_country from voter_address as b where b.address_id = a.address_id) address_country, a.address_id,a.polling_id,a.voting_status FROM voter_details as a limit $_REQUEST[start],$_REQUEST[limit]
  • 12. 12 | P a g e Add records Query 6 is used to insert data into voter_details table. Query 6: INSERT INTO `voter`.`voter_details` (`voter_id`, `voter_name`,`voter_gender`, `voter_age`,`email`,`election_id`,`polling_id`,`voting_status`) VALUES ('$id', '$f2', '$f5', '$f6','$f7','1','$pincode_check','$f12'); Print & Preview records
  • 13. 13 | P a g e SCREEN SHOTS Screen-shot of complete system. Screen-shot of Add panel to insert data.
  • 14. 14 | P a g e Screen-shot of Edit panel to edit data. Screen-shot to select building and display voters of that building.
  • 15. 15 | P a g e Screen-shot to select Surname and display voters of that surname.
  • 16. 16 | P a g e Thank You