2. Write a PHP program to store the current date-time in a COOKIE and display the ‘Last visited on’ date-time on the web page upon reopening of the same page.
PHP Program: Date-Time Cookie Management
Assignment: Practice Set Q.2 Solution
2. Write a PHP program to store the current date-time in a COOKIE and display the ‘Last visited on’ date-time on the web page upon reopening of the same page.
PHP SCRIPT
<?php
//Check if Visited or not
if(!isset($_COOKIE['lastvisited']))
{
$d=date("d:m:y h:i:s");
setcookie('lastvisited',$d);
echo"Not visited";
}
else
{
//Display Visited
$lastvisited=$_COOKIE['lastvisited'];
//Update last visit of cookie
$d=date("d:m:y h:i:s");
setcookie('lastvisited',$d);
//call $lastvisited
echo"Last visited on:<br> $lastvisited";
}
?>
0 Comments