You can access the cookie's information in PHP using the $_COOKIE ______ array.

  • $_COOKIE
  • $_REQUEST
  • $_SESSION
  • $_SERVER
The cookie's information in PHP can be accessed using the $_COOKIE superglobal array. This array contains key-value pairs where the keys represent the names of the cookies and the values hold the corresponding cookie values. More details: http://php.net/manual/en/reserved.variables.cookies.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *