I am just starting out with the Zend Framework and I am a little confused but getting there. Anyway I have been reading the documentation for *Zend_Form* and was wondering about setting values for the form such as this:
$form->setAction('')
->setMethod('post')
setAction and setMethod were the only two options given and I was wondering if there was a list anywhere of what I can and can't use. I tried to set the ID with setId and that didn't work.
I know that I can set it this way
$form->setAttrib('id', 'login');
Is this the only way to set an ID for the form? AKA what other options can I set right off the bat without using a setAttrib?
Thanks, Levi