We want to make a php custom program that hold the statistics for our site-Infomation about the user that make a click at a page etc.
What is the best solution to hold all this information.
To use a database, a log file or what?
Dimis
Another way is to it in Javascript. Intercept all click-events on every page and send an Ajax-request to the server that logs it in a database. You can limit it to only log clicks on links, but you could also expand it to log basically everything the user does by logging all kinds of events.
Bookmarks