Hello.
I am making a basic forum and am trying to add a 'post read' type feature. For example on this one, a different image is displayed.
I am able to do the simple;
If Post_Time > User_Last_Visit Then 'NEW'
My plan was to use this, then create a session for each 'board' or section of the forum once they have read it, basically as a 'skip read check' flag.
This would work fine for the few boards, however creating a new session variable (containing the read time) for each individual topic could result in tens, or hundreds of them for each user.
I guess that there is a better way round it than my initial plan.
Any ideas?
Thanks!
K.