it, and came here during that brain fart. Sorry for wasting your
On Apr 4, 2:12 pm, Vance Lucas <
va...@vancelucas.com> wrote:
> You access them the same way as others. The stored params on the request
> object are only the ones that have been explicitly set, like those matched
> from the router. Others are retrieved on demand from the $_GET and $_POST
> superglobals.
>
> $hello = $request->hello;
> $hello = $request->get('hello', 'value if not present');
> $hello = $request->post('hello'); // looks only in $_POST variables
>
> --