Method: r::set
Sets a request value by key
Info
Syntax
r::set($key, $value=null)
Parameters
- $key (mixed) The key to define
- $value (mixed) The value for the passed key
Example
r::set('username', 'bastian');
a::show($_REQUEST);
// sample output: array(
// 'username' => 'bastian'
// ... other stuff from the request
// );