user2273146
user2273146

Reputation: 1622

How can I hide the text Using zend form in zend studio

//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

Answers (1)

doydoy44
doydoy44

Reputation: 5772

If you want a hidden field, you can do this:

$purchaseid=$this->createElement('hidden', 'purchaseid');  

Upvotes: 1

Related Questions