Ok, here's the whole kit and kaboddle 😃 ...
I have a member's profile site... and each member's page contains a counter. Everytime another member visits their page.. the counter increases for their page in the database.
What I need to do is create a way for visitors to beable to only increase a page's counter value only ONCE during the site's visit. BUT they can increase other member pages as they visit them.
So I need to increase the counter... then put in the session something like this..
Counter_session | member1 | member2
so the visitor using that session can't increase the counter on member1 and member2's page.
each time they visit a different member page.. the member's name will be added to their Counter_session value.
I need to figure out how to do this.