如何将此表单转换为 zend 形式


How to convert this form in zend form

我有这个HTML表单,我需要用zend形式编写它。我试过但失败了

< form id="form" method="post" class="form">
<fieldset>
    <div class="widget">
        <div class="title"><img src="images/icons/dark/list.png" alt="" class="titleIcon" /><h6>Add new section</h6></div>
        <div class="formRow">
            <label>Section name:</label>
            <div class="formRight">
                <input type="text" name="cat_name" id="cat_name" value="" />
                <input name="art_author" id="art_author" type="hidden" value="admin" />
            </div>
            <div class="clear"></div>
        </div>
        <div class="formSubmit">
            <input type="submit" value="Add" class="redB" />
            <input type="reset" value="Reset" class="brownB" />
        </div>
        <div class="clear"></div>
    </div>
</fieldset>

任何身体可以帮我吗?

第一步

http://framework.zend.com/manual/1.12/en/learning.quickstart.intro.html

第二步 http://framework.zend.com/manual/1.12/en/zend.form.html

并且不要复制粘贴。尝试使用 Zend Manual,让你的zend_form工作。

祝你好运!