Syntax for rendeing a zend form in a non zend project

leo9x

New Member
I'm using zend form in a non-zend project and I'm able to access \[code\]Zend_Form\[/code\] fine from my custom class \[code\]Custom_Form\[/code\]. Then in the file where I want to render my form, I create an instance of my form, but then I'm not sure how to render it.\[code\]$form = new Custom_Form();//how to render the form herevar_dump($form); //var_dump looks busy so couldn't find info from it\[/code\]
 
Back
Top