Like this question, I wish to keep track of the number of page views. However, unlike that question, I would like to use MySQL to store the data. How do you propose that I set up my table to efficiently sore the data related to that specific page?
I would also like to apply some "intelligence" to the page counter. How can I keep track of the unique pageviews (similar to SO) in addition to the overall pageviews? How should I modify the table from above to suit these changes?
Additionally, could I use this information to track advertisement "views"? If so, how? If not, then I'll gladly post that as another question.
Thanks.