Advertisement
Guest User

Untitled

a guest
Sep 4th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2.  
  3. return array(
  4.     'username' => array(
  5.         'label' => 'Username',
  6.         'rules' => array(
  7.             'required' => 'required',
  8.             'trim' => 'trim',
  9.             'min_length' => 5,
  10.         ),
  11.     ),
  12.    
  13.     'password' => array(
  14.         'label' => 'Password',
  15.         'rules' => array(
  16.             'trim' => 'trim',
  17.             'required' => 'required',
  18.             'max_length' => 8,
  19.             'min_length' => 5,
  20.         ),
  21.     ),
  22.    
  23.     'pays' => array(
  24.         'label' => 'Pays',
  25.         'rules' => array(
  26.             'trim' => 'trim',
  27.             'required' => 'required'
  28.         ),
  29.     ),
  30. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement