PHP code example of azi / input

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

    

azi / input example snippets


use Azi\Input;

$input = Input::all();

$name = Input::post('name');
$search = Input::get('search');

$email = Input::request('email'); 

if(Input::exists('email)){
  // send an email to user
}