Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public $validate=array(
  2. 'email' => array(
  3. 'rule'=>'email',
  4. 'message'=>'The email field is not currect',
  5. ),
  6. 'password' =>array(
  7. 'rule'=>array('minLength','8'),
  8. 'required' => true,
  9. 'message'=>'minume 8 charecter long',
  10. 'required'=>true,
  11. ),
  12. 'user_name'=>array(
  13. 'rule'=>'notEmpty',
  14. 'required'=>true,
  15. 'message'=>'user Name is require',
  16. ),
  17.  
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement