A lightweight and flexible front controller for PHP 5
Apparently the front controller is a commonly misunderstood design pattern so I figured I’d throw out some thoughts to the masses.
To put it simply, a Front Controller is a gateway to an application. All requests hit the front controller leaving it to decide what to do next. Typically a front controller will set […]