4
I was creating a system that provides me data of my users according to the date I request, from X to Y for example. And the only way I could find for that was to create a table that way:
date
with the date that was inserted in DATE format
name
name of the saved, for example Browser
value
the value entered, for example Google Chrome
ip
with the user’s IP
At the time the user enters I check if there is a Row on the date of TODAY with the name BROWSER if there is no it inserts, if there is it does nothing.
Well that way he’ll insert the browser of the users who accessed my site and then I can select, create charts etc
The problem with that would be space, wouldn’t that take up a lot of space? Taking into account for example an average of 5-10,000 visits a day, and taking into account that I don’t want to capture just the browser. How could I solve this problem?
And how about putting the structure since I didn’t understand what kinds of fields put in your definition...
– chambelix