DSBDA Mini Project2nd
DSBDA Mini Project2nd
COMPUTER ENGINEERING
Submitted by
Student Name PRN No
Rina Balu Khairnar 72328003H
Ritu Vishnu Khairnar 72253630F
Under guidance of
Prof.S.V.Shardul
INSTITUTE
VISION
MISSION
2
Phone: 02551-304210, 304203 Fax: 02551-304200
VISION
To provide technical education in computer engineering
& enhance software skills to meet the needs of society.
MISSION
3
Phone: 02551-304210, 304203 Fax: 02551-304200
4
Phone: 02551-304210, 304203 Fax: 02551-304200
PROGRAM OUTCOME
PO1 Engineering knowledge Apply the knowledge of mathematics, science, Engineering
fundamentals, and an Engineering specialization to the solution of
complex Engineering problems.
PO2 Problem analysis Identify, formulate, review research literature and analyze complex
Engineering problems reaching substantiated conclusions using
first principles of mathematics, natural sciences
and Engineering sciences.
PO3 Design / Development of Design solutions for complex Engineering problems and design
Solutions system components or processes that meet the specified needs with
appropriate consideration for the public health and safety, and the
cultural, societal, and
Environmental considerations.
PO4 Conduct Investigations of Use research-based knowledge and research methods including
Complex Problems design of experiments, analysis and interpretation of data, and
synthesis of the
information to provide valid conclusions.
PO5 Modern Tool Usage Create, select, and apply appropriate techniques, resources, and
modern Engineering and IT tools including prediction and
modeling to complex
Engineering activities with an understanding of the limitations.
PO6 The Engineer and Society Apply reasoning informed by the contextual knowledge to assess
societal,
health, safety, legal and cultural issues and the consequent
responsibilities relevant to the professional engineering practices.
PO7 Environment and Understand the impact of the professional Engineering solutions in
Sustainability societal and Environmental contexts, and demonstrate the
knowledge of, and need for
sustainable development.
PO8 Ethics Apply ethical principles and commit to professional ethics and
responsibilities
and norms of Engineering practice.
PO9 Individual Function effectively as an individual, and as a member or leader in
and Team diverse
Work teams, and in multidisciplinary settings.
PO10 Communication Skills Communicate effectively on complex Engineering activities with
the Engineering community and with society at large, such as,
being able to comprehend and write effective reports and design
documentation, make effective presentations, and give and receive
clear instructions.
PO11 Project Management and Demonstrate knowledge and understanding of Engineering and
Finance management principles and apply these to one’s own work, as a
member and leader in a team, to manage projects and in
multidisciplinary Environments.
PO12 Life-long Learning Recognize the need for, and have the preparation and ability to
engage in independent and life-long learning in the broadest
context of technological Change. 5
Phone: 02551-304210, 304203 Fax: 02551-304200
COURSE OUTCOMES
CO1:Apply principles of Data Science for the analysis of real
time problems.
6
SHATABDI INSTITUTE OF ENGINEERING & RESEARCH
AGASKHIND, TAL-SINNER, DIST-NASIK
CERTIFICATE
Student Name PRN No
Rina Balu Khairnar 72328003H
Ritu Vishnu Khairnar 72253630F
This is to certify that,
Has satisfactorily carried out and completed Mini Project Work entitled,
Dr. S. P. SONAR
Dr. P. G. VISPUTE
Vice Principal
& Dean Principal
Academic
7
ACKNOWLEDGEMENT
I would like to express my sincere gratitude to all those who have supported me throughout my training period
and the preparation of this report.
Firstly, I would like to thank my project guide Ms. S. V. Shardul, for their invaluable gauidance,support,and
encourangment throught the project.
I express our gratitude to Ms. P. Y. Sanvatsarkar, Assistant Professor and Head of Computer Engineering
Department, for his constant encouragement, co-operation, valuable guidance and support. I express our sincere thanks to
all Professors of department for their unfailing inspiration. Also, I would like to thank all the staff members of the
department for their continuous support.
I would be failing in our duties if I do not make a mention of our family members including our parents for
providing moral support, without which this work would not have been completed.
I express our gratitude to Dr. S. P. Sonar Vice Principal & Dean Academic, Dr. P. G. Vispute, Principal,
of Shatabdi Institute of Engineering & Research, Nashik for their constant encouragement, co-operation, valuable guidance
and support.
This kind of work cannot be finished without many others help, even some of them have not aware of their
contribution and importance in producing this project. It is a great pleasure for us to take this opportunity to express our
gratefulness to all of them.
8
DECLARATION
"We Ritu Vishnu Khairnar , Rina Balu Khairnar, a students of “Shatabdi Institute of Engineering &
Research, Nashik” enrolled in the Degree in Bachelor of Engineering in Computer Engineering program, hereby
declare that the mini project Report titled "Health Care Case Study" is our own original work.
We further declare that all references and sources used in the preparation of this report have been duly
acknowledged. This report has not been submitted for any other academic purpose, nor has it been presented elsewhere
for evaluation.
We express gratitude to supervisor Prof.S.V.Shardul, for their invaluable guidance and support during this
training period".
9
CONTENT
1 Certificate 7
2 Acknowledgment 8
3 Declaration 9
4 Introduction 11
5 Theory 12
6 Code with output 13
7 Conclusion 16
10
INTRODUCTION
Healthcare plays a critical role in ensuring the well-being and quality of life
for individuals and communities. With advancements in technology, healthcare
systems are increasingly relying on digital tools to improve patient care, streamline
operations, and enhance decision-making. A healthcare case study allows us to
explore real-world challenges, analyze patient management, study system workflows,
and propose effective solutions.
In this mini project, we have focused on a healthcare case study to understand
the complexities involved in patient data management, service delivery, and
healthcare administration. The study emphasizes the use of technology to solve key
issues such as record-keeping, diagnosis support, appointment scheduling, and overall
patient experience. Through this project, we aim to highlight how an efficient
healthcare system can improve not just individual health outcomes but also the
operational efficiency of healthcare institutions.
11
THEORY
12
Input code
<?php
// Connect to Database
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "healthcare";
// Add Patient
if(isset($_POST['add_patient'])){
$name = $_POST['name'];
$age = $_POST['age'];
$gender = $_POST['gender'];
$contact = $_POST['contact'];
$sql = "INSERT INTO patients (name, age, gender, contact) VALUES ('$name', '$age', '$gender', '$contact')";
if($conn->query($sql)){
echo "<p>✅ Patient Added Successfully!</p>";
} else {
echo "<p>❌ Error: ".$conn->error."</p>";
}
}
/ Book Appointment
if(isset($_POST['book_appointment'])){
$patient_id = $_POST['patient_id'];
$date = $_POST['date'];
$doctor = $_POST['doctor'];
$sql = "INSERT INTO appointments (patient_id, date, doctor) VALUES ('$patient_id', '$date', '$doctor')";
if($conn->query($sql)){
echo "<p>✅ Appointment Booked Successfully!</p>";
} else {
echo "<p>❌ Error: ".$conn->error."</p>";
}
}
?>
<!-- View Patients -->
<h2>Patient List</h2>
<table>
<tr>
<th>ID</th><th>Name</th><th>Age</th><th>Gender</th><th>Contact</th>
</tr>
<?php
$result = $conn->query("SELECT * FROM patients");
while($row = $result->fetch_assoc()){
echo "<tr><td>".$row['id']."</td><td>".$row['name']."</td><td>".$row['age']."</td><td>".$row['gender’
]."</td><td>".$row['contact']."</td></tr>";
}
?>
</table>
13
<!-- View Appointments -->
<h2>Appointments</h2>
<table>
<tr>
<th>ID</th><th>Patient ID</th><th>Date</th><th>Doctor</th>
</tr>
<?php
$result = $conn->query("SELECT * FROM appointments");
while($row = $result->fetch_assoc()){
echo "<tr><td>".$row['id']."</td><td>".$row['patient_id']."</td><td>".$row['date']."</td><td>".$row['doctor']."</td></tr>";
}
?>
</table>
</body>
</html>
Output:
14
CONCLUSION
The Healthcare Management System developed as part of this mini project aims
to simplify and streamline the basic processes of patient record management and
appointment scheduling. By implementing this system, we have demonstrated how
even a simple digital platform can significantly improve efficiency, accuracy, and
accessibility in healthcare operations.
Overall, the project provided valuable practical experience in web development
and database management while solving real-world healthcare problems. With further
enhancements, such systems can be expanded to include features like online
consultations, medical history tracking, and automated notifications, making
healthcare more efficient, patient-centric, and accessible.
This mini project successfully meets the basic requirements and lays a strong
foundation for more advanced healthcare management solutions in the future.
16