Posts by Sergio Sa Fortes • 24 points
3 posts
-
0
votes1
answer67
viewsA: MVC the method I used to call a function from another model is correct?
Is it correct to use this method ? If yes, I should load the Model "b" into the controller’s __Construct "a" or directly into the controller’s function "a" as in this example? For those who go…
-
0
votes1
answer72
viewsA: Why isn’t my form accepting accents?
You need to add a Header to your email form and specify the language encoding, as in the example below: $destinatario = "[email protected]"; $remetente = "[email protected]"; $subject…
-
0
votes1
answer67
viewsQ: MVC the method I used to call a function from another model is correct?
I am studying MVC and came across the following situation: I have a View that needs to receive data from two different Models, so in the controller of this View I have the function below: public…