Posts by Bruno Paiva • 83 points
3 posts
-
0
votes1
answer349
viewsQ: Save user message to text file or database?
I am developing a PHP system following the MVC(Model-View-Controller) standard. I decided to create an account deletion page for users and display a text field so that they can inform us why they…
-
7
votes2
answers1353
viewsQ: What can the Model do to validate the MVC?
In an MVC project developed in PHP, I should validate what in model and what in controller? Hash of passwords I’m doing in the method set of the classes model. Certain validations that are not…
-
0
votes1
answer341
viewsQ: View in PHP MVC project
I’m developing a PHP MVC project and I did the whole view in.html files. When I need to manipulate a form, I specify in the action the path to a script in the controller. My question is whether it…