|
Description: |
We are looking to have a few table based HTML forms converted to be used in a Zend Framework application using Zend_Form. This means taking:
<tr>
<th>First Name</th>
<td><input type="text" name="firstname" /></td>
</tr>
And adding it to a Zend_Form Class like this:
$this->addElement('text', 'firstname', array(
'label' => 'First Name:',
'required' => true
));
Although this is mostly cutting and pasting elements, you should have a basic knowledge of Zend_Form.
You do not need to process, validate, or style the forms. This is just to set up the elements as Zend_Form classes.
Any questions please ask. Additional Info (Added 10/10/2008 at 17:47 EST)...Attached file: sample.html.txt Additional Info (Added 10/10/2008 at 17:49 EST)...I have attached the largest form we need converted. Please just quote on this one and we can discuss the others after. Thank you.
|