An open API service indexing awesome lists of open source software.

https://github.com/devkabir/procedural-php-hms-demo

A simple, easy-to understand example of a management system made with PHP and the MVC design pattern in a procedural approach.
https://github.com/devkabir/procedural-php-hms-demo

hms hms-sample hospital hospital-appointment-booking hospital-information-management hospital-management hospital-management-system management php-procedural-project php-project php7 procedural procedural-content-generation procedural-programming system

Last synced: 2 months ago
JSON representation

A simple, easy-to understand example of a management system made with PHP and the MVC design pattern in a procedural approach.

Awesome Lists containing this project

README

        

# Hospital Management System - HMS :tada:

A simple, easy-to understand example of a management system made with PHP and
the [`MVC`](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller) design pattern in a procedural
approach.

## Structure :coffee:

```bash
├───controller # Accepts input and converts it to commands for the model or view.
│ ├───admin
│ ├───doctor
│ ├───patient
│ └───website
├───model # Typically represents a table in the application's database.
│ ├───admin
│ ├───doctor
│ ├───patient
│ └───website
└───view # Any representation of information such as a table.
├───admin
├───doctor
├───patient
└───website

```

## Database desing ?

please review [here](./DatabaseDesign.md)

## Any new update?

please review [changelog](./Changelog.md)