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.'
)
);
var $validate = array('login' => array('rule' => 'alphaNumeric','message' => 'Usernames must only contain letters and numbers.'));


























