Live data from Hacker News

What is controller in MVC

news.ycombinator.com

1–3 of 3 posts

Re: What is controller in MVC

#2
The controller generally accepts requests and fires an action. i.e. You may request index.php/admin/users/view/id/123

Your controller in the above example is Users firing the view Action it got from the request (usually another object).