A simple, easy-to understand example of a management system made with PHP and
the MVC
design pattern in a procedural
approach.
├───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
please review here
please review changelog