Final Report.docx

  • Uploaded by: Younus Khan
  • 0
  • 0
  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Final Report.docx as PDF for free.

More details

  • Words: 3,566
  • Pages: 30
Hospital Management System

INTRODUCTION:

The project Hospital Management system includes registration of patients, storing their details into the system, and also computerized billing in the pharmacy, and labs. The software has the facility to give a unique id for every patient and stores the details of every patient and the staff automatically. It includes a search facility to know the current status of each room. User can search availability of a doctor and the details of a patient using the id. The Hospital Management System can be entered using a username and password. It is accessible either by an administrator or receptionist. Only they can add data into the database .The data can be retrieved easily. The interface is very userfriendly. The data are well protected for personal use and makes the data processing very fast.

Hospital Management System is powerful, flexible, and easy to use and is designed and developed to deliver real conceivable benefits to hospitals.

Hospital Management System is designed for multi speciality hospitals, to cover a wide range of hospital administration and management processes. It is an integrated end-to-end Hospital Management System that provides relevant information across the hospital to support effective decision making for patient care, hospital administration and critical financial accounting, in a seamless flow.

Dept. of CSE,GECR

Page 1

Hospital Management System Hospital Management System is a software product suite designed to improve the quality and management of hospital management in the areas of clinical process analysis and activity-based costing. Hospital Management System enables you to develop your organization and improve its effectiveness and quality of work. Managing the key processes efficiently is critical to the success of the hospital helps you manage your processes.

Dept. of CSE,GECR

Page 2

Hospital Management System ABOUT COMPANY

Techno-Soft was established in the year of september-2013 and it specializes in J2EE Development Training, & We also provides professional software courses like JAVA, DOT NET, PHP/MSQL, ORACLE, C/ C++, Web designing and Graphic Designing. Techno-Soft was established for Career studies and Research in IT industry by the Professional team. We have made to provide a complete solution for IT companies and non-IT companies, and it plans to grow. Techno-Soft having Highly qualified and experienced faculty and the special emphasis we place on delivering hands-on education is our strength. Given that most of our faculty work in the real time scenarios, they are able to supplement their classroom teaching with real-life experiences and involve students in practical learning. It similarly has some aptitude in Mobile Apps Development honing. We have made to pass on an entire record IT associations and non-IT associations, and it courses of action to create. Techno Soft having highly qualified and experienced power and the unmistakable complement we be disposed to put on passing on hands-on drilling is our quality. Given that the dominant part of our staff include the constant circumstances, they can supplement their schoolroom teaching with genuine experiences and grasp understudies in sober minded learning. Name: Techno soft Address: 32nd Cross, Near siddeshwara Hall, SIT Main Road, Tumkur-572102

Dept. of CSE,GECR

Page 3

Hospital Management System TASK PERFORMED WEB DEVELOPMENT Web development governs all the code that makes a website tick. It can be split into two categories-front-end and back-end. The front-end or client-side of an application is the code responsible for determining how the website will actually display the designs mocked up by a designer. The back-end or server-side of an application is responsible for managing data within the database and serving that data to the front-end to be displayed. As you may have guessed, it’s the front-end developer’s job that tends to share the most overlap with the web designer. Some common skills and tools traditionally viewed as unique to the front-end developer are listed below: 

HTML/CSS/JavaScript



CSS pre-processors (i.e., LESS or Sass)



Frameworks (i.e., Angular JS, React JS, Ember)



Libraries (i.e., j Query)



Git and GitHub

Web Development : HTML (Hyper Text Mark up Language) What is HTML? The Hypertext Mark-up Language (or HTML) is the language used to create documents for the World Wide Web. As the name implies it is a mark-up language Dept. of CSE,GECR

Page 4

Hospital Management System - the original (ASCII) text is edited and new (text) codes are added to indicate how (and where) the text should appear. When an HTML document is read by a suitable Web browser specifically designed to understand HTML codes, such as Internet Explorer or Firefox, the formatting codes are interpreted and the text is displayed in an attractive and more dynamic way. HTML documents can include graphics, and, more importantly, links to other documents Structure of an HTML Document Basic structure of an HTML Document will be as follow – <TITLE> Title of the webpage Content of page

Dept. of CSE,GECR

Page 5

Hospital Management System Element HTML document starts and ends with an tag. Once you open an tag you are expected to close it by calling tag. Element 1. This element defines certain information about an HTML document, such as what its title is, who the author is, and reference information about the document, etc. 2. To create a head element, start with < HEAD> tag, then include all of the elements you want in your head section, then end the head element with a tag. 3. If your website is using some scripts or styles of your own or third party library, they are declared in this section. 4. The titles for a webpage is displayed are displayed by browsers on the top of the page, usually in the title bar (Refer below image). Every HTML document must have a title contained in a <TITLE>start tag and a end tag.

Element The real content for any HTML document occurs in the body section, which is enclosed between and tags. Two Categories of Body Elements There are two basic categories of HTML elements used in the body section: Block level elements Block-level elements are used to define groups of text for a specific role. They include tags that position text on the page, begin new paragraphs, set heading Dept. of CSE,GECR

Page 6

Hospital Management System levels and create lists. Some commonly used block-level elements and their tags are: 

Paragraph: < P> and





Heading, level one: < H1 > and



Heading, level two:

and





Horizontal rule:




Centering:
Text level Elements Text-level elements are for markup bits of text, including creating links, inserting things like images or sounds, and changing the appearance of text. Some commonly used text-level elements are:



Bold: and



Italic: and



Line-break: < BR>



Link anchor: and



Image:

Dept. of CSE,GECR

Page 7

Hospital Management System HTML Tags

Tag (Paragraph): Browsers automatically add some space (margin) before and after each

element. Attribute: Align: Specifies the alignment of text with in paragraph. Values: left, right, center. Tag (Hyperlink): The tag defines a hyperlink, which is used to link from one page to another. Attribute: Href: The most important attribute of the element is the href attribute, which indicates the link's destination. Tag (image) : Images are not technically inserted into an HTML page, images are linked to HTML pages. The tag creates a holding space for the referenced image. Attribute: The tag has two required attributes: src and alt.

    and