Posts Tagged Get Cookie
Set cookie with php
Posted by in PHP code on June 14th, 2009
Here’s the code to set and get cookie
<?php
//set cookie
setcookie(”Cookie1″, $value);
setcookie(”Cookie2″, $value, time()+3600);
//get cookie
echo $_COOKIE["Cookie2"];
?>










