Create Form for Modules

While creating forms for the modules, we can do it by creating a folder with Module name in the /forms folder. While you name the class you have to use Form_Module_FileName and you have to same in the controller

Ex:
In /application/forms/Admin

class Form_Admin_Register extends Zend_Form{
}

In the controller you have to initiate form by using

$form = new Form_Admin_Register();