Hi,
I'm doing a forum script in php, i'm trying to think the best way to flag topics each user has read or not.
Once the user logins into forum i can mark what's been read or not depending on his last login time, that's fine, now what's the best approach to mark each topic each user clicks?
I was thinking in adding cookies but that would lead to a security issue and might not be accurate, specially if the user logins from another machine/browser.
I also thought of adding a special database table with each topic each user has clicked, that also sounded bad for me due the incrase on cpu usage and database growth.
Anyone has a better suggestion/solution?
Thanks.