estoy llamando asi:
http://project.zend/admin/Guestbook/index
este en mi controlador:
GuestbookController.php
Cita: class GuestbookController extends Zend_Controller_Action
{
public function init()
{
}
public function indexAction()
{
}
public function signAction()
{
$request = $this->getRequest();
$form = new Application_Form_Guestbook();
if ($this->getRequest()->isPost()) {
if ($form->isValid($request->getPost())) {
$comment = new Application_Model_Guestbook($form->getValues());
$mapper = new Application_Model_GuestbookMapper();
$mapper->save($comment);
return $this->_helper->redirector('index');
}
}
$this->view->form = $form;
}
}
y en mi vista, index.phtml solo tengo esto:
<p>jhkjhjkhjkhkj</p>