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?
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.
|
Store a count somewhere. Increment it every time the URL is visited. (Possibly with some filtering for bots and spammers in place) |
|||||||||||
|
|
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. |
|||||
|
|
You need to store the counter somewhere, in some kind of a database. And then, whenever the site loads, you just get the 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:
Of course, both the |
||||
|
|
|
You can retrieve the value with EDIT: Sorry misread the last 1/2 of the post, to display the value from the database use something similar to:
|
|||||
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
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. |
|||||||||||
|
|
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:
where |
||||
|
|
|
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 |
|||
|
|
|
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. |
|||
|
|
|
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 :-) |
|||
|
|
|
Pretty simplistic approach, will need to be extended but here's the basics:
Obviously, there's no protection against somebody refreshing the referring link over and over. You'll likely need to use |
|||
|
|

idparameter 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