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