hola rodrigow..como hago para guardar???
yo tengo esta funcion
function insertarAction()
{
require_once 'UsuarioM.php';
$form = Usuario::getAddUsuarioForm();
$usuario = new Usuario();
if ($this->getRequest()->isPost()){
print_r("despues de if");
if ($form->isValid($_POST)) {
$values = $form->getValues();
Usuario::createNewUsuario(array('nombre' => $values['nombre']));
$_POST = array();
}
}
$this->render();
$this->view->form = $form;
//$this->view->title = 'Usuarios';
$form->populate(array('nombre' => '')); //blanquea los campos
$this->view->accion = "Agregar";
}
y en el modelo le asigno al boton esto para q lo ejecute y no m funciona..
->addElement('button', 'aceptar', array('label' => 'Aceptar','onclick' => 'javascript:location.href= "../prueba/user/insertar"'));
si m puedes ayudar t lo agradeceria porque de verdad no c cual es el error...