我如何隐藏文本使用zend形式在zend工作室


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

//用户可以看到这个文本字段,我想对用户隐藏它

 $form=new Zend_Form;
    $this->setMethod ( 'post' );
    $purchaseid=$this->createElement('text', 'purchaseid');  
    $this->addElement($purchaseid);

如果你想要一个隐藏的字段,你可以这样做:

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