Skip to content

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

Notifications You must be signed in to change notification settings

devkabir/procedural-php-hms-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hospital Management System - HMS 🎉

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

Structure ☕

├───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

Any new update?

please review changelog