Add some html to Zend Forms

后端 未结 10 1176
天命终不由人
天命终不由人 2020-11-30 04:17

Im looking for a simple bit of code that will let me add the following html into my zend form:

10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-30 04:58

    This functionality is built into Zend via Zend_Form_Element_Note.

    new Zend_Form_Element_Note('forgot_password', array(
        'value' => 'Forgot Password?',
    ))
    

提交回复
热议问题