$_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:
<?php echo "<pre>";
print_r($_REQUEST);
echo "</pre>"; ?>