azi/input

OO way to interact with user input

0.1 2015-08-20 14:56 UTC

This package is auto-updated.

Last update: 2024-04-25 09:27:21 UTC


README

OO way to interact with user input

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
}