PHP Get Cookie


 

PHP Get Cookie

PHP Get Cookie tutorial provides an example by which you can check the attributes of Cookie

PHP Get Cookie tutorial provides an example by which you can check the attributes of Cookie

PHP Get Cookie

The Cookies can be used to store identifiable information about a user on their computer so that the website can use or pick up on it later, even after your computer has been turned off, and you may continue from where you started. To get the information of Cookie  you can use the following example

(To know Cookie in details please visit our web page http://www.roseindia.net/software-tutorials/detail/16640):

Code:

<?php

//Calculate 60 days in the future

//seconds * minutes * hours * days + current time

$inTwoMonths = 60 * 60 * 24 * 60 + time();

setcookie('lastVisit', date("G:i - m/d/y"), $inTwoMonths);

f(isset($_COOKIE['lastVisit']))

$visit = $_COOKIE['lastVisit'];

else

echo "You've got some cookies!";

cho "Your last visit was - ". $visit;

?>

Output:

Your last visit was - 9:05 - 09/12/09

Ads