0% found this document useful (0 votes)
86 views15 pages

STQA Report

This document discusses the development of a computerized and web-based COVID-19 testing management system. The system aims to allow COVID-19 medical labs to manage testing-related activities online. It is intended to help labs overcome challenges of manual, local diagnostic management. The system would allow patients to register, book appointments for tests, track test histories, and access reports online through a portal. Labs could upload reports for patients to view. The system uses PHP and a MySQL database to manage user accounts, testing information, appointments and reporting between patients and labs.
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)
86 views15 pages

STQA Report

This document discusses the development of a computerized and web-based COVID-19 testing management system. The system aims to allow COVID-19 medical labs to manage testing-related activities online. It is intended to help labs overcome challenges of manual, local diagnostic management. The system would allow patients to register, book appointments for tests, track test histories, and access reports online through a portal. Labs could upload reports for patients to view. The system uses PHP and a MySQL database to manage user accounts, testing information, appointments and reporting between patients and labs.
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/ 15

Abstract

Nowadays, COVID19 Management System is one of the most essential tools that are
mostly used in Testing Lab; it is mostly used to manage COVID19 medical lab related
activities. In this project we tried to develop a computerized and web based COVID19
Testing management system. Our main intention is to allow this application to be used
in most retailing COVID19 lab, where a small point of customization will be required
to each COVID19 lab in the implementation period. This system is designed to
overcome all challenges related to the management of diagnostic that were used to be
handled locally and manually.

Contents
Abstract..................................................................................................................................................i
Introduction...........................................................................................................................................1
Theory...................................................................................................................................................2
1. HTML (Hypertext markup language):.......................................................................................2
2. CSS (Cascading Style sheets):...................................................................................................2
3. JavaScript:..................................................................................................................................2
4. PHP:...........................................................................................................................................2
5. MySQL:.....................................................................................................................................2
Implementation......................................................................................................................................2
EVALUTION:...................................................................................................................................3
1. New User Test Page...................................................................................................................4
Conclusion.............................................................................................................................................8
References.............................................................................................................................................9

i
COVID-19 TESTING MANAGEMENT SYSTEM

Introduction

COVID19 Testing Management System is web-based technology which brings up various


diagnosis works online. Here patients are first allowed to register on the website and provide personal,
test information. Once registered with their address and contact details, the patients may now see a
variety of tests conducted by the lab. The patient will select the required test and book appointment
after that lab centre send a lab boy at registered address to collect a sample. After successful sample
collection patient can track their test history using the name, order and registered mobile number. The
system allows admin to attach a copy of the report into the system and automatically shown on user
side so user can download report. In COVID19 Testing Management System we use PHP and
MySQL database. It has two modules i.e.

1. Admin.

2. User (Patient).

Admin Module

 The admin can see all detail in brief like the total, assigned and the sample collected and completed
tests.

 Manages Phlebotomist (add, update, delete).

 Manages all the tests like assign the test to Phlebotomist and update the history.

 Two types of report will be generated. One is between dates reports and another one is by search.
Admin can search the report by order number, name and mobile number.

User (Patients) Module

 New user needs to provide testing Information. A registered user needs to provide test information

 Users can also search their test report using order number, name and registered mobile number.
COVID-19 TESTING MANAGEMENT SYSTEM

Theory

1. HTML (Hypertext markup language):


The Hypertext Markup Language or HTML is the standard markup language for documents
designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style
Sheets (CSS) and scripting languages such as JavaScript.
Web browsers receive HTML documents from a web server or from local storage and render the
documents into multimedia web pages. HTML describes the structure of a web page semantically and
originally included cues for the appearance of the document.

2. CSS (Cascading Style sheets):


Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document
written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS
describes how elements should be rendered on screen, on paper, in speech, or on other media.

3. JavaScript:

JavaScript (js) is a light-weight object-oriented programming language which is used by several


websites for scripting the webpages. It is an interpreted, full-fledged programming language that
enables dynamic interactivity on websites when applied to an HTML document. It was introduced in
the year 1995 for adding programs to the webpages in the Netscape Navigator browser. Since then, it
has been adopted by all other graphical web browsers. With JavaScript, users can build modern web
applications to interact directly without reloading the page every time. The traditional website uses js
to provide several forms of interactivity and simplicity .

4. PHP:
PHP is an open-source, interpreted, and object-oriented scripting language that can be executed at the
server-side. PHP is well suited for web development. Therefore, it is used to develop web applications
(an application that executes on the server and generates the dynamic page.).

PHP was created by Rasmus Leadoff in 1994 but appeared in the market in 1995.

5. MySQL:

MySQL is currently the most popular database management system software used for managing the
relational database. It is open-source database software, which is supported by Oracle Company. It is
fast, scalable, and easy to use database management system in comparison with Microsoft SQL Server
and Oracle Database. It is commonly used in conjunction with PHP scripts for creating powerful and
dynamic server-side or web-based enterprise applications.

It is developed, marketed, and supported by MySQL AB, a Swedish company, and written in C
programming language and C++ programming language.
COVID-19 TESTING MANAGEMENT SYSTEM

 PURPOSE:

The main purpose of COVID-19 Testing Management System to provide a platform where patient
can book the test online and get their COVID-19 test done at home. With the help of this project,
we are bringing the use of technology in the field of medical diagnosis where patients can avail all
the diagnosis facilities at their doorsteps. Another purpose for developing this application is to
generate the report automatically at the end of the session or in the between of the session.

 SCOPE:

Today also we must go to the COVID19 Test Lab centre, wait in the queue to get our COVID19
test done. As Technology is growing rapidly, we are also moving to a technical world where
everything we want to be online. So, with the help of this project we are bringing the use of
technology in the field of medical diagnosis where patients can avail all the diagnosis facilities at
their doorsteps. This project makes the diagnosis process easy and reduces the burden of patients.
At a same time, its help the diagnostic centre to track all their patients details with their test
reports. This access friendly software provides quick and effective services which helps the
diagnostic centre to increase their sales and profit .

 DESIGN AND ANALYSIS:

Today also we have to go to the diagnostic centre, wait in the queue to get our COVID-19 test
done. As Technology is growing rapidly, we are also moving to a technical world where
everything we want to be online. So, with the help of this project we are bringing the use of
technology in the field of medical diagnosis where patients can avail all the diagnosis facilities at
their doorsteps. This project makes the diagnosis process easy and reduces the burden of patients.
COVID-19 TESTING MANAGEMENT SYSTEM

FACILITIES REQUIREMENTS:
COVID-19 TESTING MANAGEMENT SYSTEM

Implementation

CASE DIAGRAM:
Use case diagrams model behaviour within a system and helps the Developers understand of what the
user require. The stick mans represents what’s called an actor. Use case diagram can be useful for
getting an overall view of the system and clarifying that can do and more importantly what they can’t
do. Use case diagram consists of use cases and actors and shows the interaction between the use case
and actors.
COVID-19 TESTING MANAGEMENT SYSTEM

EVALUTION:

HOMEPAGE
COVID-19 TESTING MANAGEMENT SYSTEM

NEW USER (PATIENTS) TEST BOOKING

Screenshot’s:

1. New User Test Page


COVID-19 TESTING MANAGEMENT SYSTEM
COVID-19 TESTING MANAGEMENT SYSTEM

2. Admin Dashboard

3. Test Details
COVID-19 TESTING MANAGEMENT SYSTEM

4. State-wise Dashboard
COVID-19 TESTING MANAGEMENT SYSTEM

Conclusion

COVID19 Testing Management System is very much graceful and lively. Users have to register to the
portal by giving their details and then they can take appointment through online with minimal effort.
The Phlebotomist comes to patient address to collect the sample. Once test is done and test report is
generated patient can download the report by logged in to the portal. This system can be implemented
in diagnostic labs and clinics.
COVID-19 TESTING MANAGEMENT SYSTEM

References

 For PHP
• https://www.w3schools.com/php/default.asp
•https://www.sitepoint.com/php/
• https://www.php.net/

 For MySQL
• https://www.mysql.com/
• http://www.mysqltutorial.org

 For XAMPP
• https://www.apachefriends.org/download.html
i

You might also like