Count Number of Visits on a web page using cookies in php
Write a PHP program to Count Number of Visits on a web page using cookies in php
In this tutorial, you will learn how to Count Number of Visits on a web page using cookies in php, so that keeps track of how many times a visitor has loaded the page.
Below is the php script to Count Number of Visits on a web page using cookies in php.
<html>
<head>
<title>PHP program to Count Number of Visits on a web page using cookies in php</title>
</head>
<body>
<h3>Write a PHP Program to Count Number of Visits on a web page using cookies in php</h3>
<?php
$countvisit = 1;
if(isset($_COOKIE['countvisit']))
{
$countvisit = $_COOKIE['countvisit'];
$countvisit ++;
}
setcookie('countvisit', $countvisit);
echo "You have visited ".$countvisit." times";
?>
</body>
</html>
Thanks for reading.