I've created a website where users will be able to add entries, associate rows in different tables and so on. I need to track what actions users are doing for a score table.
I also need to keep track on page views.
I'm trying to figure out what is the most efficient way for tracking / logging this.
Is it best to:
- create a new DB and add records here?
- Add records on same DB as website?
- Use javascript to send parameters by URL to a logging server?
Any other methods that is good?
I don't know how many users I will have on my website when I launch this, but hopefully I will have a bit of trafic.