Ver Mensaje Individual
  #9 (permalink)  
Antiguo 04/11/2010, 10:31
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Validacion de un checkbox en Zend Form

El flujo es algo así:
Código PHP:
Ver original
  1. $Form = new Zend_Form();
  2. $Request = $this->getRequest();
  3. if ($Request->isPost()) {
  4.        if ($Request->isValid($Request->getPost()) {
  5.                 var_dump($Form->getValues());
  6.        }
  7. }

Saludos.