Advertisement
Guest User

Untitled

a guest
Jan 13th, 2012
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php
  2. return array(
  3.     'name' => array(
  4.         'not_empty' => 'Please enter your username.',
  5.     ),
  6.     'password' => array(
  7.         'matches' => 'Passwords doesn\'t match',
  8.         'not_empty' => 'Please enter your password'
  9.     ),
  10.     'email' => array(
  11.         'email' => 'Your email isn\'t valid',
  12.         'not_empty' => 'Please enter your email'
  13.     ),
  14.     'about-me' => array(
  15.         'max_lenght' => 'You cann\'ot exceed 300 characters limit'
  16.     ),
  17.     '_external' => array(
  18.         'username' => 'This username already exist'
  19.     )
  20. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement