Extra Light PHP Framework
Request
This class is loaded automatically by the system
Content
Request has post/get/cookie
$this->request->hasPost(); // isset($_POST);
$this->request->hasGet(); // isset($_GET);
$this->request->hasCookie(); // isset($_COOKIE);
$this->request->hasPost('foo'); // isset($_POST['foo']);
Get request post/get/cookie
$this->request->post('foo'); // return $_POST['foo'];
$this->request->get('foo'); // return $_GET['foo'];
$this->request->cookie('foo'); // return $_COOKIE['foo'];