View Single Post
  #2 (permalink)  
Old 07-11-2008, 11:54 AM
smsiebe smsiebe is offline
Junior Member
 
Join Date: Oct 2007
Location: Augusta, GA
Posts: 9
Default

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
__________________
Steve Siebert
Zend Certified Engineer
General Dynamics IT
www.get-dev.com
Reply With Quote