Cookie Implementation
In PHP you can use cookie like this
To set Cookie
<?php
setcookie("cookie1","This is cookie");
?>
To get cookie
<?php
echo $_COOKIE["cookie1"];
?>
In PHP you can use cookie like this
To set Cookie
<?php
setcookie("cookie1","This is cookie");
?>
To get cookie
<?php
echo $_COOKIE["cookie1"];
?>