Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a website which generates every new user their own unique link (http://website.com/?id=12345). I want to include a click counter to show the user how much times their link has been visited. Does anyone know how to do this?

share|improve this question
Gosh. Just use a ready-made script, and stop asking here. hotscripts.com/search/all/php+click+counter – mario May 1 '11 at 21:12
How do you know if the visitor is returning? Whatever method you are using it is exactly the same for storing your links. What's the purpose of the the question? – T9b May 2 '11 at 14:02
1  
What do you mean by "clicks" exactly? – Pekka 웃 May 2 '11 at 14:38
1  
@user733618 Are you relying on the value of the id parameter in the URL to distinguish links, or are there other URLs that it would need to be able to handle? – todofixthis May 2 '11 at 14:41
show 1 more comment

closed as not a real question by Alix Axel, Mark Trapp, Quentin, Charles, John Saunders May 2 '11 at 18:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

12 Answers

Store a count somewhere. Increment it every time the URL is visited. (Possibly with some filtering for bots and spammers in place)

share|improve this answer
yes, that's what I plan to do, but can you show me a sample script of how it can be done? Im new to php. – user719813 May 1 '11 at 20:15
8  
No, StackOverflow isn't a "write an entire script for me" service. – Quentin May 1 '11 at 20:16
well sorry, but how can you help me if i dont even know what you mean? – user719813 May 1 '11 at 20:17
@user733618 - well, how would you do it in a language that you are familiar with? Write it, and we'll help you to translate it to PHP (at least the parts you have trouble with). – Vilx- May 1 '11 at 20:51

You would have to create a redirect script in order to be notified of those clicks.

i.e. a link to http://mysite.com/redirect.php?site=google.com

This script on your site would increment a counter for the provided $_GET['site'] variable, and then header redirect the browser to the real link. header('Location: google.com'); exit();

Your main page would be able to query and display this count as you listed.

share|improve this answer
my site generartes every user a unique id which is stored at the end of the url, mysite/?id=123 . They are encouraged to share that url. I need to count clicks on how much times their link was clicked, and cant use redirects because of that. – user719813 May 2 '11 at 22:27
@user733618 Then you can easily access $_GET['id'] to obtain the currently requested link, and increment a counter. Are you still having a problem? – Fosco May 3 '11 at 0:10

You need to store the counter somewhere, in some kind of a database. And then, whenever the site loads, you just get the id value, look for the current count in the database, and increase it by one.

In addition you might want to add some checks to for example prevent a single IP from increasing the counter simply by reloading very often etc.

edit:

Some pseudo-php-code:

<?php
if ( isset( $_GET['id'] ) )
{
    $id = $_GET['id'];
    $oldCounter = loadCounterValueForId( $id );
    saveCounterValueForId( $id, $oldCounter + 1 );
}

Of course, both the loadCounterValueForId and the saveCounterValueForId need to be implemented to load and save the data somewhere (i.e. some kind of a database).

share|improve this answer

You can retrieve the value with $_GET['i'] and increment a counter in a database

EDIT: Sorry misread the last 1/2 of the post, to display the value from the database use something similar to:

$countId = $GET['i'];
mysql_connect("host", "username", "password") or die(mysql_error());
mysql_select_db("database name") or die(mysql_error());
$result = mysql_query("SELECT * FROM linkCounterTable WHERE countId = $countId") or die(mysql_error());  
$count = 0;

while($row = mysql_fetch_array( $result )) {
    $count = $row['column of counter'];
}
echo "Number of clicks:";
echo $count++;
mysql_query("UPDATE linkCounterTable SET columnOfCounter=$count WHERE countId = $countId");
share|improve this answer
but how do i display the counter on my site? – user719813 May 5 '11 at 22:52
This would have to be retrieved from the database where you store the counter – Meberem May 5 '11 at 22:54

If you are counting clicks to mysite.com/blah.php?id=123, then all you have to do is GET['id'] in your PHP files (or views if you are using MVC) and send it off to a function in a script that increments the count.

Otherwise, Fosco answered it for outbound links. If you want a mixture, you would do:

mysite.com/redirect.php?site=google.com&id=123

And GET the id from there while redirecting to google.com.

share|improve this answer

You could possibly have a field in a database that holds the number of times a userid has been visited. You can increment this each time the page is accessed

share|improve this answer

I believe counters are meant to count only for certain pages. But in any case, I believe they store the counts in a database or even a file like you did would work. For every click with a unique IP, the old hit count is retrieved and incremented.

Somehow I see though that every time your code there loads, the hit counter starts at 0 and never passing 1 click.

Edit: Counting IP from a log file could be very harsh when there are millions of IP to start counting out of a file to compare. Plus, there are dynamic IP in which cases I could have the same IP as someone did yesterday or yesteryear.

share|improve this answer
its not my website, and do you know how the code could be used to count specific pages? – user719813 May 1 '11 at 20:55
you'll have to work with PHP sessions if you want to count more than one page as "Page views" + a database that stores a unique IP and click counts. If you already have a script that counts clicks, just include it in every page that you want to be counted. – robx May 1 '11 at 21:02
thanks, but the problem is that the link i want counted (site.com/?id=123) leads to the homepage. So its a bit harder than it sounds. – user719813 May 1 '11 at 21:04
Okay, maybe I am not sure on your "specific value". Is this a count click on redirect? – robx May 1 '11 at 21:06
Yes that's what it basically is – user719813 May 1 '11 at 21:26
show 1 more comment

How do you generate the unique link right now? Do you use some database? I think the best solution for concurrent acces is to keep them in database (like MySQL). When you create new user - you insert it into a table with unique ID (like autoincrement). Then, each time user is visiting your page, you update counter:

UPDATE tbl_users SET counter = counter + 1 WHERE user_id = @user

where @user is PHP $_GET["id"]

share|improve this answer

Google Analytics (and its competitors) offer goal tracking, and using their JavaScript implementations you can mark certain links as goals.

See for the GA help: http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=148375

EDIT: a much more detailed analysis is at http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&answer=55527

share|improve this answer

Another option, client side, is to bind a generic click event to any and report clicks to server using ajax. It's a bit more complex, but you avoid to make a redirect for every link.

share|improve this answer

i would create a session and link the session-id to the url-id in you database. if someone browse through your site with a old url-id i would check if his session-id matches the session-id in the database, if not, it is a follower :-)

share|improve this answer

Pretty simplistic approach, will need to be extended but here's the basics:

<?php
    /* BEGIN CONFIG */
    $key = 'i';                   // key to look for in $_GET
    $storage = 'click-track.txt'; // file to read and save click data
    /* END CONFIG */

    // make sure $key exists in $_GET and is a number
    if (isset($_GET[$key]) && is_numeric($_GET[$key])) {
        $id = (int)$_GET[$key]; // save it to a variable
        if (file_exists($storage) && is_readable($storage) && is_writable($storage)) { // file is accessible
            $data = file_get_contents($storage); // read contents of file
            if (sizeof($data) <= 1) { // file is empty (or only has a newline)
                $data = array(); // set $data to empty array
            } else { // file is not empty
                $data = json_decode($data); // decode json
                if (!is_array($data) { // failed to decode
                    $data = array(); // set $data to empty array
                }
            }
            $found = -1; // remember if the item was found or not
            foreach ($data as &$entry) { // loop over each entry in $data
                if ($entry->id == $id) { // if we have a match
                    $entry->count++; // increase the count
                    $found = 1; // we found the id
                    break; // don't need to look any more
                }
            }
            if ($found < 1) { // $id didn't exist in the data
                $new = array("id"=>$id, "count"=>1); // make a new entry
                $data[] = $new; // put new entry into $data
                $found = 0; // didn't find the id
            }
            if ($found > -1) { // only saves file if there were no errors
                file_put_contents($storage, json_encode($data)); // write out new file
            }
        } else { // can't read the file
            echo 'error: cannot access file: ' . $storage;
        }
    }
?>

Obviously, there's no protection against somebody refreshing the referring link over and over. You'll likely need to use $_SESSION for that.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.