Put into practice all the previous knowledge learned in the master to develop a project using PHP in the backend layer.
We have created a PHP project with user login and CRUD operations implementing MVC, OOP and MySQL.
- HTML, CSS and JS on the frontend layer
- PHP on the backend layer
- Create database in MySQL
- And finally, implement MVC pattern using OOP
- User sessions must be managed by PHP
- In the event that the user is already logged in and tries to go to the login URL again, this will redirect him to the main page of your application
- (M) 2 models with 3 different functions that obtain information from a database from at least 2 tables
- (V) At least one of the views will have to be reused for more than one action
- (C) You must create a main controller / entry point ( index.php ) that is responsible for receiving the request from the main page.
- You must create one file for each controller and one function for each action. Each action will receive the request as a parameter.
- Demonstrate that the pattern is implemented correctly and are capable of displaying the data obtained from the source in a view.





