Getting Started

Learn More

More Depth

Routing

Basic Request

You may access all user input with a few simple methods. You do not need to worry about the HTTP verb used for the request, as input is accessed in the same way for all verbs.

Retrieving An Input Value

$name = input('name');

Retrieving A Default Value If The Input Value Is Absent

$name = input('name', 'Arryangga');