Hello every body,
i m using zend form & create its elements using the code below.
// To create text box. $txt = $this->CreateElement('text', 'txtName'); $txt = $this->setLabel('First Name'); $elements[] = $element;
it works fine & it is posted firm form as well. But when i used the same technique to show a browse button, like.
// To Create Browse Button. $img = $this->CreateElement('file', 'imageId'); $img = $this->setLabel('Upload Image');
$elements[] = $element;
it does not work.