Handling Input with Zend Framework outside MVC
Posted
by Pekka
on Stack Overflow
See other posts from Stack Overflow
or by Pekka
Published on 2010-03-28T12:23:15Z
Indexed on
2010/03/28
12:33 UTC
Read the original article
Hit count: 254
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?
© Stack Overflow or respective owner