Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- return array(
- 'username' => array(
- 'label' => 'Username',
- 'rules' => array(
- 'required' => 'required',
- 'trim' => 'trim',
- 'min_length' => 5,
- ),
- ),
- 'password' => array(
- 'label' => 'Password',
- 'rules' => array(
- 'trim' => 'trim',
- 'required' => 'required',
- 'max_length' => 8,
- 'min_length' => 5,
- ),
- ),
- 'pays' => array(
- 'label' => 'Pays',
- 'rules' => array(
- 'trim' => 'trim',
- 'required' => 'required'
- ),
- ),
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement