Node JS-1
Node JS-1
Project Report on
BACHELOR OF TECHNOLOGY IN
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
By
G.SARIKA-22K81A7318
Mrs. KIRANMAI
Assistant Professor
DEPARTMENT OF
ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING
St. MARTIN'S ENGINEERING COLLEGE
UGC Autonomous
Affiliated to JNTUH, Approved by AICTE
Dhulapally, Secunderabad-500 100
www.smec.ac.in
JANUARY - 2024
St. MARTIN'S ENGINEERING COLLEGE
UGC Autonomous
Accredited by NBA & NAAC A+
Dhulapally, Secunderabad-500 100
www.smec.ac.in
CERTIFICATE
DECLARATION
G.SARIKA-22K81A7318
ACKNOWLEDGMENT
The satisfaction and euphoria that accompanies the successful completion of any
task would be incomplete without the mention of the people who made it possible
and whose encouragement and guidance have crowded our efforts with success.
First and foremost, we would like to express our deep sense of gratitude and
indebtedness to our College Management for their kind support and permission to
use the facilities available in the Institute.
We especially would like to express our deep sense of gratitude and indebtedness
to Dr. P. SANTOSH KUMAR PATRA, Group Director, St. Martin’s
Engineering College Dhulapally, for permitting us to undertake this project.
We wish to record our profound gratitude to Dr. M. SREENIVAS RAO,
Principal, St. Martin’s Engineering College, for his motivation and
encouragement.
We are also thankful to Dr. N. KRISHNAIAH Head of the Department, Artificial
Intelligence And Machine Learning, St. Martin’s Engineering College,
Dhulapally, Secunderabad, for his support and guidance throughout our project.
We would like to express our sincere gratitude and indebtedness to our project
supervisor Mrs.KIRANMAI Assistant Professor, Department of Artificial
Intelligence and Machine Learning St. Martins Engineering College, Dhulapally,
for his/her support and guidance throughout our project. Finally, we express
thanks to all those who have helped us successfully completing this project.
Furthermore, we would like to thank our family and friends for their moral support
and encouragement. We express thanks to all those who have helped us in
successfully completing the project.
G.SARIKA-22K81A7318
CONTENTS
CHAPTER 1-ABSTRACT 1
CHAPTER 2- INTRODUCTION 2
CHAPTER 7-CONCLUSION 7
CHAPTER 9-REFERENCES 9
1. ABSTRACT
1
2.INTRODUCTION
2
3.SYSTEM ANALYSIS
Understand and document the existing processes, from patient admission to discharge,
including registration, appointment scheduling, billing, and inventory
management.Develop DFDs to visualize the flow of information within the hospital,
identifying data sources, processes, and destinations.
Develop an Entity-Relationship Diagram (ERD) to model the data entities and their
relationships, considering the integration with the MySQL database..Compile all the
findings and requirements into a comprehensive document that serves as a reference for
the development team.Ensure that the proposed system meets the intended goals and
requirements. Verification: Confirm that the system components align with the specified
requirements.Compile all the findings and requirements into a comprehensive document
that serves as a reference for the development team.
3
4.SYSTEM IMPLEMENTATION
SOURCE CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hospital Management System</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Hospital Management System</h1>
</header>
<section id="patient-section">
<h2>Patient Information</h2>
<form action="process.php" method="post">
<label for="patientName">Patient Name:</label>
<input type="text" name="patientName" required>
<section id="appointment-section">
<h2>Appointment Scheduling</h2>
<!-- Add appointment form here -->
</section>
<footer>
<p>© 2024 Hospital Management System</p>
</footer>
</body>
</html>
4
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}
section {
padding: 20px;
margin: 20px;
border: 1px solid #ccc;
}
form {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 10px;
}
input[type="text"] {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4caf50;
color: white;
border: none;
padding: 10px;
cursor: pointer;
}
<?php
// Connect to MySQL database (Replace with your actual database credentials)
$servername = "localhost";
$username = "username";
5
$password = "password";
$dbname = "hospital_db";
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Insert data into 'patients' table (Replace with your actual table structure)
$sql = "INSERT INTO patients (patient_name, patient_id) VALUES ('$patientName',
'$patientID')";
6
5.OUTPUT SCREENS
7
6.SYSTEM REQUIREMENTS
Server:
Database Server:
Network:
Client Devices:
Standard desktop or laptop computers for hospital staff accessing the system.
Internet connectivity for remote access, if required.
Printers and other peripherals as needed for generating reports and documents.
8
6.2 SOFTWARE REQUIREMENTS
Operating System:
Apache, Nginx, or another web server for hosting the PHP application.
Database Management System:
PHP for server-side scripting. Ensure compatibility with the chosen web server and
database.
Client-side Technologies:
Compatibility with major web browsers (Google Chrome, Mozilla Firefox, Safari,
Microsoft Edge).
Security Software:
9
7. CONCLUSION
10
8 .FUTURE ENHANCEMENTS
11
9-REFERENCES
David Lake, Rodolfo Milito, Monique Morrow & Rajesh Vargheese. (2014)
https://www.researchgate.net/publication/367460409_The_Hospital_Manageme
nt_System
12