Welcome to the Cookbook

loading...

4.1.4.1 alphaNumeric

The data for the field must only contain letters and numbers.

var $validate = array(
    'login' => array(
        'rule' => 'alphaNumeric',
        'message' => 'Usernames must only contain letters and numbers.'
    )
);
  1. var $validate = array(
  2. 'login' => array(
  3. 'rule' => 'alphaNumeric',
  4. 'message' => 'Usernames must only contain letters and numbers.'
  5. )
  6. );