Hello,
Unless you told your front controller explicitly not to render the corresponding view for the controller, it does it by default. In other words, your controller should look like:
PHP Code:
class TestController extends Zend_Controller_Action
{
function testViewAction()
{
$view = new Zend_View();
$view->assign('a', "Hay");
$view->assign('b', "Bee");
$view->assign('c', "Sea");
}
}
This SHOULD work unless you have any environmental changes. If it doesn't, please respond with you bootstrap.
Thanks,
Steve