Welcome to the Cookbook

loading...

4.1.4.20 numeric

Checks if the data passed is a valid number.

var $validate = array(
    'cars' => array(
        'rule' => 'numeric',  
        'message' => 'Please supply the number of cars.'
    )
);
  1. var $validate = array(
  2. 'cars' => array(
  3. 'rule' => 'numeric',
  4. 'message' => 'Please supply the number of cars.'
  5. )
  6. );