I am trying to implement and MVC structure in my site where a controller takes care of directing user requests to app logic and then to output formatting. In Java this is easy becasue you can easily forward user request to the appropriate components, however, I can't find a similar functionality in PHP.
Anyone would have any ideas how to best implement this structure in PHP?
Thanks