I'm looking to list two fields on row in the zend form function.
The two elements are currently set out as:
$firstName = new Zend_Form_Element_Text('c_first_name');
$firstName->setRequired()
->setLabel('First name:')
->setAttrib('maxlength', '30');
$lastName = new Zend_Form_Element_Text('c_last_name');
$lastName->setRequired()
->setLabel('Last name:')
->setAttrib('maxlength', '30');
I'm fairly new to development so any help would be great.
--
View this message in context:
http://old.nabble.com/zend-forum-2-elements-on-row-tp26154642p26154642.html
Sent from the Zend Framework mailing list archive at Nabble.com.