In this tutorial we will see how to use and lists the cookie.We will create an example which displays all the cookies value at a time
In this tutorial we will see how to use and lists the cookie.We will create an example which displays all the cookies value at a time
<?php
setcookie("amt",10000);
setcookie("rate",2);
setcookie("time",5);
$cookie=$_COOKIE;
foreach ($cookie as $key=>$val)
echo "<br>$key--> $val";
?>
amt--> 10000 rate--> 2 time--> 5