Guest User

Untitled

a guest
Jun 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. $captchaform = new Zend_Form();
  2. $captchaform->setAction('');
  3. $captchaform->setMethod('post');
  4. $captchaform->addElement('captcha', 'captcha', array(
  5. 'label' => 'Please enter the 5 letters displayed below:',
  6. 'required' => true,
  7. 'captcha' => array(
  8. 'captcha' => 'Image',
  9. 'wordLen' => 5,
  10. 'timeout' => 300,
  11. 'font' => APPLICATION_PATH . '/fonts/arial.ttf',
  12. 'imgDir' => APPLICATION_PATH . '/../public/img/captcha',
  13. 'imgUrl' => HOST . '/public/img/captcha'
  14. )
  15. ));
  16.  
  17. $this->view->form = $captchaform;
Add Comment
Please, Sign In to add comment