You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yova c02f3b05da
Add http://reusableforms.com/d/o5/html5-contact-form-send-email
3 years ago
..
src Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago
.gitignore Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago
LICENSE Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago
README.md Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago
composer.json Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago
phpunit.xml Add http://reusableforms.com/d/o5/html5-contact-form-send-email 3 years ago

README.md

PHPFormValidator

A PHP Library for 'self-documenting' server side Form Validations.

A typical usage would be like this:

use FormGuide\PHPFormValidator\FormValidator;

$validator = FormValidator::create();

$validator->fields(['name','email'])->areRequired()->maxLength(50);
$validator->field('email')->isEmail();

if(!$validator->test($_POST))
{
	return json_encode($validator->getErrors(true));
}

Installation using composer

composer require FormGuide/PHPFormValidator

Declaring validations for single fields

$validator->field('email')->isEmail()->isRequired();

Declaring validations for multiple fields

$validator->fields(['name','email'])->areRequired()->maxLength(50);

This is equivalent to:

$validator->field('name')->isRequired()->maxLength(50);

$validator->field('email')->isRequired()->maxLength(50);