This tutorial gives two examples to illustrate the code of using cookies to implement visit count statistics, including two methods of php tutorial and js
global $count;
$count=1;
if(!isset($_COOKIE["visittime"])){ setcookie("visittime",date("y-m-d H:i:s"));
setcookie("visitcount",1); echo "Welcome to your first visit to the website!";
}
else{
setcookie("visittime",date("y-m-d,H:i:s"),time()+60); $count=$_COOKIE['visitcount']+1;
setcookie("visitcount",$count); echo "The time you last visited the website was:".$_COOKIE['visittime'];
echo "
";}
echo "Your first ".$_COOKIE['visitcount']." The time you visited the website is:".date("y-m-d H:i:s");
?>
Let’s look at a simple js code to implement visit count statistics
Script description:
area
Step 1: Add the following code to the