Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. "Please fill in the MySQL Password."
  2.  
  3. my Mysql Host : localhost
  4. Mysql Username : root
  5. Mysql Password :
  6.  
  7. 097. // init password
  8. 098. $this->addElement('Password', 'password', array(
  9. 099. 'label' => 'MySQL Password:',
  10. 100. 'required' => true,
  11. 101. 'allowEmpty' => false,
  12. 102. 'validators' => array(
  13. 103. array('NotEmpty', true),
  14. 104. ),
  15. 105. ));
  16.  
  17. 100. 'required' => false,
  18. 101. 'allowEmpty' => true,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement