How to Create the Page Counter using php

This post is a one of the simple method to count the number people vising your page. This is one of the interesting thing. It is used to know how many peoples visiting your page till now. so you try this program in your website. It is very easy to understand using the text file the counter will by increment one by one.

All the websites need to know how many people hit their particular page. So this scripts helps lot to implement. Each and every hits stored in the text document. Each time the text document updated based on page views. The text document name called as a hits.txt


hits.php

<?php

    if(file_exists("hits.txt"))
{
        $hits = file_get_contents("hits.txt") + 1;
    }
else $hits = 1;

    $fp = fopen("hits.txt", "w+");

    fwrite($fp, $hits); 

    fclose($fp);

echo'<h1 style="color:orange">Total Visits ';

    print  $hits; 

echo'</h1>';
    ?>

index.php

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hit Counter</title>
</head>
<body>
<h1>Hai welcome to sanwebtutorial</h1>
<?php include('hits.php');?>
<h2><a href="http://www.sanwebcorner.com/">san web corner</a></h2>
</body>
</html>





Post a Comment

0 Comments