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.
- Host: GitHub
- URL: https://github.com/devkabir/procedural-php-hms-demo
- Owner: devkabir
- Created: 2022-12-04T15:45:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-21T05:50:28.000Z (over 1 year ago)
- Last Synced: 2025-04-15T05:55:08.823Z (2 months ago)
- Topics: 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
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: Changelog.md
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)