PHP Get Cookie
Cookies can be read using the global
array $_COOKIE. Let's output
the value of a cookie named test.
See the example:
<?php
echo $_COOKIE['test'];
?>
Cookies can be read using the global
array $_COOKIE. Let's output
the value of a cookie named test.
See the example:
<?php
echo $_COOKIE['test'];
?>