PHP code example of priteshyadav444 / validation

1. Go to this page and download the library: Download priteshyadav444/validation library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

priteshyadav444 / validation example snippets


    $path = "../../validation/validators/FormValidator.php"; 
    indlude "$path";
    use Validators\{FormValidator, FileValidator};
    $obj = new FormValidator();
    
    if (isset($_POST['submit'])) {
    $validations = [
        'name' => 'string',
        'email' => 'email',
        'phone' => 'numeric|min:10|max:10',
        'docs' => '