I'm using zend form in a non-zend project and I'm able to access Zend_Form
fine from my custom class Custom_Form
. 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.
$form = new Custom_Form();
//how to render the form here
var_dump($form); //var_dump looks busy so couldn't find info from it