What does $_COOKIE mean?
- An array of cookie variables
- A predefined cookie constant
- A function for handling cookies
- A global function
In PHP, $_COOKIE is an array that holds cookies sent by the client to the server. It provides access to cookie values. Learn more: http://php.net/manual/en/reserved.variables.cookies.php
Loading...
Related Quiz
- To declare an associative array in PHP, you can use the array() function or the [] shorthand, and the keys are assigned ______.
- The elseif statement in PHP can be used to test multiple conditions.
- What is the difference between for and foreach?
- The for loop in PHP is suitable for cases when you know in advance ______ the script should run.
- What is the use of the function 'imagetypes()'?