Jump to content

How to make a click counter.


magebash

Recommended Posts

There are a few ways to make a click counter.

 

An Easy way is to keep the "counter value" inside a file. So, everytime an user clicks on link like

<a href="count_my_click.php">Click here<a>

the php script will open the file, take its value into a variable, increase it and save it into the file again. When the work is done, you set a new header and continue to the wanted url.

 

/* ****
Content of count_my_click.php
*/

$file_handler = fopen("click.txt","w+");
/* bla,bla... get file data, increase it, bla bla.*/
fclose($file_handler);
###  The job is done!! counter increased :-)

header("Location:another_web.html");

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.