If you store th member's data like this:
sites
site_id
owner_id
content_type
content
You have the users table:
users
user_id
name
....
....
and you will have:
statistics
site_id
owner_id (connected with users/user_id)
session_id
ip
date
time
And evry site clicks you insert the visitor's IP and session id, and that site_id he/She stands.
Then you could create selects when the owner of that site enters into the statistic.
Then you could do unique-by-IP, unique-sessions-Unique, and click statistics.
IT might help.
bye,
jjosh
2levelsabove;10889930 wrote:Hello,
I have a site in which each member has their own web page and listings. I need a way so that each member can track their own statistics on their pages. How would I get started ?
Thanks