azi/input

OO way to interact with user input

Installs: 58

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 2

Open Issues: 0

pkg:composer/azi/input

0.1 2015-08-20 14:56 UTC

This package is auto-updated.

Last update: 2025-09-25 12:49:34 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
}