It looks like you're new here. If you want to get involved, click one of these buttons!
$this->validator->add_rule('phone', 'required', 'The name field is required', $posted['phone']);
// If I would like to check for decimal number (Rule from form_validation in CI)
$this->validator->add_rule('phone', 'numeric', 'The phone field must be a number', $posted['phone']);
Comments