php-validation
php-validation copied to clipboard
Form validation
Results
2
php-validation issues
Sort by
recently updated
recently updated
newest added
Hi, i use this code $validator ->required('You must supply telephone.') ->callback(function($val) { return (preg_match('/^[0-9]{1,}$/', $val, $matches) === FALSE) ? false : true; }, "Must be a Number") ->validate('telephone', 'Telephone'); To...
License
2
Hello! I have a fork of this library @ https://github.com/blackbelt/php-validation I recently received an inquiry asking what license under which the code is available. Since you're the original creator of...