Hit Counter




<html>
<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 :



Post a Comment

0 Comments