https://github.com/hinton/eitf05
Project for EITF05 - Web Security
https://github.com/hinton/eitf05
database mvc php school-project webshop
Last synced: about 2 months ago
JSON representation
Project for EITF05 - Web Security
- Host: GitHub
- URL: https://github.com/hinton/eitf05
- Owner: Hinton
- Created: 2015-09-15T11:02:14.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-02T23:09:44.000Z (almost 11 years ago)
- Last Synced: 2025-03-16T18:21:28.615Z (over 1 year ago)
- Topics: database, mvc, php, school-project, webshop
- Language: PHP
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic WebShop for EITF05
To demystify the webshop, follow index.php -> controller -> model & view
The database credentials are located in Database.php
## Autoloader
We use a PSR4 autoloader, the source is located in src directory.
## Router
The webshop uses a extremly basic routing system to load controllers, the routes are defined in index.php.
## MVC
We follow the MVC principle, with controllers managing the requests, models managing the data, and views managing the presentation. (Simplified)