Giter Site home page Giter Site logo

e-healthcare's Introduction

E-Health Care System by Shubh Agarwal

Overview

The E-Health Care System is a comprehensive platform designed to improve healthcare services by integrating appointment scheduling, medical record management, and telemedicine into a user-friendly interface. It consists of three primary modules: Admin, Doctor, and User.

Modules

Admin Module

  • User Management:
    • Add, update, or remove doctors and patients.
    • Manage user roles and permissions.
  • System Reports:
    • Generate and view reports on system usage, appointments, and patient statistics.
    • Monitor system performance and user activity.
  • Configuration:
    • Manage application settings.
    • Configure notification settings and system parameters.

Doctor Module

  • Patient Management:
    • Access detailed patient profiles and medical histories.
    • Update patient information and medical records.
  • Appointment Management:
    • View upcoming and past appointments.
    • Set availability and manage scheduling.

User (Patient) Module

  • Profile Management:
    • Create and update personal information.
    • Manage medical history and health records.
  • Appointment Booking:
    • Search for doctors and book appointments.
    • View and manage upcoming and past appointments.
  • Medical Records:
    • Access and download personal medical history and prescriptions.

Features

  • Secure Authentication:
    • Role-based access control for Admin, Doctor, and User.
    • Secure login and registration using JSP.
  • Intuitive Dashboard:
    • Customized dashboards for each user type.
    • Quick access to essential features.
  • Responsive Design:
    • Fully responsive interface for access on various devices.

Technologies Used

  • Frontend:
    • HTML, CSS, JavaScript for dynamic UI.
  • Backend:
    • JSP for server-side logic.
  • Database:
    • MYSQL for data sJtorage and retrieval.

Installation

  1. Clone the repository:
    git clone https://github.com/yourusername/e-healthcare-system.git
  2. Navigate to the project directory:
    cd e-healthcare-system
  3. Install Tomcat Server 9 or 10:
  4. Install Eclipse IDE:
  5. Add tomacat server in Eclipse
  6. Database Setup
    CREATE DATABASE hospital;
  7. Create the user_dtls table:
    CREATE TABLE user_dtls (
    id INT AUTO_INCREMENT PRIMARY KEY,
    username VARCHAR(50) NOT NULL,
    password VARCHAR(255) NOT NULL,
    role ENUM('admin', 'doctor', 'user') NOT NULL,
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
    );
  8. Create the patient table:
    CREATE TABLE patient (
    id INT AUTO_INCREMENT PRIMARY KEY,
    user_id INT,
    name VARCHAR(100) NOT NULL,
    age INT,
    gender ENUM('male', 'female', 'other'),
    address TEXT,
    phone VARCHAR(15),
    email VARCHAR(100),
    medical_history TEXT,
    FOREIGN KEY (user_id) REFERENCES user_dtls(id)
    );
    
  9. Create the doctor table:
     CREATE TABLE doctor (
    id INT AUTO_INCREMENT PRIMARY KEY,
    user_id INT,
    name VARCHAR(100) NOT NULL,
    specialty_id INT,
    experience INT,
    phone VARCHAR(15),
    email VARCHAR(100),
    FOREIGN KEY (user_id) REFERENCES user_dtls(id),
    FOREIGN KEY (specialty_id) REFERENCES specialty(id)
    );
    
  10. Create the specialty table:
    CREATE TABLE specialty (
    id INT AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(100) NOT NULL,
    description TEXT
    );
  11. Change password of MySQl root in
     src/main/java/com/db/DBConnect.java
    
  12. Run index.jsp file on added tomcat server:
     src/main/webapp/index.jsp
    
    

Contact

For questions or feedback, please contact [email protected].
Connect with me on LinkedIn.

e-healthcare's People

Contributors

shubhagarwal-30 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.