PHP Request

$_REQUEST is a super global array that is automatically created by PHP. It will hold all the values of other three super arrays:

  • $_GET
  • $_POST
  • $_COOKIE

You can access $_REQUEST data using print_r() and <pre> to format the result: