Download the PHP package fruitware/php-form-validation without Composer
On this page you can find all versions of the php package fruitware/php-form-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download fruitware/php-form-validation
More information about fruitware/php-form-validation
Files in fruitware/php-form-validation
Download fruitware/php-form-validation
More information about fruitware/php-form-validation
Files in fruitware/php-form-validation
Vendor fruitware
Package php-form-validation
Short Description PHP form validation Class , simple and easy to use class , yet flexible and easy to upgrade
License GPL v2
Homepage https://github.com/ASoares/PHP-Form-Validation
Package php-form-validation
Short Description PHP form validation Class , simple and easy to use class , yet flexible and easy to upgrade
License GPL v2
Homepage https://github.com/ASoares/PHP-Form-Validation
Keywords formvalidation
Please rate this library. Is it a good library?
Informations about the package php-form-validation
ValidFluent
A simple, flexible and easy to use PHP form validation class (uses a fluent interface )
Note: index.php has a typical example , if anyone decides to use this , please double check the spelling on error messages ;-)
@author Andre Soares [email protected]
License:
GPL v2 http://www.gnu.org/licenses/gpl-2.0.txt
typical use:
$valid = new ValidFluent($_POST);
$valid->name('user_name')->required('You must chose a user name!')->alfa()->minSize(5);
$valid->name('user_email')->required()->email();
$valid->name('birthdate')->date('please enter date in YYYY-MM-DD format');
if ($valid->isGroupValid()) echo 'Validation Passed!';
OR:
$valid = new ValidFluent($_POST);
if ( $valid->name('user_name')->required('You must chose a user name!')->alfa()->minSize(5)
->name('user_email')->required()->email()
->name('birthdate')->date('please enter date in YYYY-MM-DD format')
->isGroupValid() )
echo 'Validation passed!';
On HTML Form:
All versions of php-form-validation with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.3
The package fruitware/php-form-validation contains the following files
Loading the files please wait ....