PHP code example of itsharks / validation

1. Go to this page and download the library: Download itsharks/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/ */

    

itsharks / validation example snippets




$validation = new \Itsharks\Validation\validation();


/* lidation->input("inputname")->nputname")->email();
/* min */
$validation->input("inputname")->min(number);
/* max */
$validation->input("inputname")->max(number);

// show errors 
$validation->showErorr();

// is error 
$validation->is_error();

// case 
$validation->input("inputname")->