<html>
<head> <title> Hit Counter </title> </head>
<head> <title> Hit Counter </title> </head>
<body>
<?php
session_start();
if(isset($_SESSION['count']))
$_SESSION['count']++;
else
$_SESSION['count'] =0;
echo "You have visited this page <font color=red size=4>" . $_SESSION['count'] . " times before.";
?>
</body>
</html>
OUTPUT :
Connect With Us! Instagram : https://www.instagram.com/sawsonu123 Facebook : https://www.facebook.com/sawsonu Email : sawson2000@gmail.com
0 Comments