Reputation: 1622
//User can see this textfield well i want it to be hidden from user
$form=new Zend_Form;
$this->setMethod ( 'post' );
$purchaseid=$this->createElement('text', 'purchaseid');
$this->addElement($purchaseid);
Upvotes: 0
Views: 30
Reputation: 5772
If you want a hidden field, you can do this:
$purchaseid=$this->createElement('hidden', 'purchaseid');
Upvotes: 1