I need to implement a Controller, since I’m applying the MVC pattern. I will continue to focus on player management and because I am concentrating on a single module with a limited functionality set, I actually do not need a front controller. However, I know that I will have a whole range of modules in my application (e.g. player management, messaging, trade, military activity, intelligence, etc.) and I will now try to think through whether to use or not to use a front controller.
When coding with PHP, functionality can be grouped into separate PHP scripts. Each of these scripts can act.. Read more!