According to the manual:

consisting of the contents of $_GET, $_POST, $_COOKIE, and $_FILES.
However, $_REQUEST[] won't work for me with cookies:

PHP Code:
echo "User is: " $_COOKIE['user'] . "<br>"//will give "User is: Kristopher"

echo "User is: " $_REQUEST['user']; //will give "User is: "