Despues de tanto, borre todo y comence de nuevo, y ahora funciona, pero lo que no funciona es cuando llamo a una clase de un form.
me sale el siguiente error:
Fatal error: Class 'Qlogin_Form_Login' not found in /var/www/qaz/application/modules/Qlogin/controllers/LoginController.php on line 19
LoginController.php
Código PHP:
public function pruloginAction()
{
$request = $this->getRequest();
$form = new Qlogin_Form_Login(); // Application_Form_Clientes();
}
Código PHP:
class Qlogin_Form_Login extends Zend_Form
{
public function __construct($options = null)
{
parent::__construct($options);
$countryList=array('USA','UK','ARGENTINA');
$firstName = $this->createElement('text', 'Nombre');
$firstName->setLabel('Nombre:')
->setAttrib('size',70)
->setAttrib('maxlength', 100)
->addValidator('StringLength', false,array(3,50))
->setValue('')
->setRequired(true);
}}
que estoy haciendo mal???