According to the manual:
However, $_REQUEST[] won't work for me with cookies:consisting of the contents of $_GET, $_POST, $_COOKIE, and $_FILES.
PHP Code:echo "User is: " . $_COOKIE['user'] . "<br>"; //will give "User is: Kristopher"
echo "User is: " . $_REQUEST['user']; //will give "User is: "
![]()




Reply With Quote