// Display cookie value
<?php
echo $_COOKIE[“user_name”];
?>
You can view all cookies as follows
<?php
print_r($_COOKIE);
?>
// Display cookie value
<?php
echo $_COOKIE[“user_name”];
?>
You can view all cookies as follows
<?php
print_r($_COOKIE);
?>