In a classic Zend Framework MVC setup, there seems to be access to a generic _request
object from within the model/view/controller instance as outlined here:
$this->_request->getPost('variablename');
is this request object somehow available in a non-MVC setup as well?
If yes: how would I initialize and access it?