我有这个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>
任何人都可以帮助我吗?
答案 0 :(得分:0)
第一步http://framework.zend.com/manual/1.12/en/learning.quickstart.intro.html
第二步http://framework.zend.com/manual/1.12/en/zend.form.html
不要复制粘贴。尝试使用Zend手册让你的zend_form工作。
祝你好运!