I am pretty much new into this world of the PHP MVC, so I apologize for any obvious answer.
When it comes to the Controller, should I create multiple individual files like "login.php" and "logout.php" and then have the login form action point to "controller/login.php"?
form action="controller/login.php" method="post"
or
form action="controller/controller.php" method="post"
In case the second is the correct one, should I include or extend the "login.php" (assuming it should still exist in a different file) into the controller.php?
I am just wondering if from a design perspective this is correct. I have read: Should I extend Controller or Create Helper? Single Controller with Multiple Views ,which seem to be similar (with a different language though), but I am still not sure that I got it.
Thanks in advance,