Simplest PHP Hit Counter or Download Counter – Count the Number of Times of Access (Page Views or File Downloads)

by Yang Yang on May 19, 2010

Share This Article:
Subscribe to Kavoir: blog feed

Here’s how you can create yourself the simplest PHP hit counter that records the number of times any resource on your website that has been accessed (visited or downloaded). It can be either a web page or a downloadable file package. The hits number will be stored in a plain text file named count.txt.

Hit counter for a web page

You have a web page at here: http://www.example.com/mypage.php and you want to display the number of times this page has been visited on the web. Put these lines in mypage.php where you want the hit count displayed:

<?php

$hit_count = @file_get_contents('count.txt'); // read the hit count from file
echo $hit_count; //  display the hit count
$hit_count++; // increment the hit count by 1
@file_put_contents('count.txt', $hit_count); // store the new hit count

?>

Depending on the permissions set, you may need to manually create the text file count.txt. With most hosts, however, this snippet should automatically create the file for you. If it doesn’t work, create a text file count.txt in the same directory with mypage.php and put an 0 in it.

Download counter for a downloadable file package

To record the number of times a file has been downloaded, for instance, for a file located at here: http://www.example.com/download/pics.zip, first you need to create a PHP file named download-pics.php, place it in the /download directory and put these lines in it:

<?php

$hit_count = @file_get_contents('count.txt');
$hit_count++;
@file_put_contents('count.txt', $hit_count);

header('Location: http://www.example.com/download/pics.zip'); // redirect to the real file to be downloaded

It’s basically the same with the counter of web page hits except that download-pics.php redirects to the real file URL after recording the hit in count.txt. Similarly, you may need to create count.txt in /download directory and put an 0 in it for the first time.

Now, instead of giving the real URL of the file to your user, you would give them this URL:

http://www.example.com/download/download-pics.php

So they will download pics.zip from here instead of from the real URL or the download hit will not be recorded.

To show the number of times pics.zip has been downloaded, just put these lines in the intended place of any PHP file that’s located in the /download directory (the same directory of count.txt):

<?php

$hit_count = @file_get_contents('count.txt');
echo $hit_count;

?>
Share This Article:
Subscribe to Kavoir: blog feed

You should also read:

{ 11 comments… read them below or add one }

Lukman September 3, 2010 at 3:23 am

hi, wat about for multiple fils in a folder?

Reply

Mayur October 18, 2010 at 6:25 pm

Thanks, exactly what i have been looking for. But like the first guy said, what if i have to use this for multiple articles or downloads? Also i was thinking of using MySql for storing number of counts or downloads, is that possible?

Reply

Yang Yang October 19, 2010 at 4:27 pm

Sure that is possible. But it would require some extra work. Plain files are always the easiest solution.

Reply

Yang Yang October 19, 2010 at 4:25 pm

You can definitely do that. Just create separate count.txt files for each of the files in the directory: count_1.txt, count_2.txt, etc.

Reply

gostats October 29, 2010 at 1:14 pm

Really nice post. No matter if the blog is for business or pleasure, adding a counter to the site is a good idea.

Reply

Ahmad Ali December 14, 2010 at 4:24 am

Thanks a lot, actually i am searching for such a code for counter on my web. Thanks again, I will try it.

Reply

Jan December 30, 2010 at 7:06 am

Hi, thank you for this script.

i cannot get this to work when i placed everthing with the correct paths
in to a sub-directory.

Any idea how that is possible?

Reply

Danny December 31, 2010 at 8:41 am

Not bad, although this would be more efficiant using a database and MySQL, as well as having something like download.php?file=example.zip .

Reply

denver May 31, 2011 at 2:20 pm

thanks…

Reply

Alan September 16, 2011 at 7:36 am

Nice and simple script thank you but the only question I ask is how to add extra text to the hit counter?

echo $hit_count; <<.< I am probably just being stupid and my cold isn't helping me to concentrate all that well.

Reply

Nitin Gupta December 30, 2011 at 11:52 pm

How to create counter in real time, this is using the increment, which is not real time.

Reply

Leave a Comment

Previous post:

Next post: