How do forums show you unread topics?

后端 未结 5 1184
刺人心
刺人心 2020-12-29 13:35

I have user discussion forums I coded in php/mysql, I am wanting to know how the big name forums can make it show you which topics have new posts in them, usually by changin

5条回答
  •  死守一世寂寞
    2020-12-29 14:32

    You could have a table that gets an insert whenever a thread gets read, if the user reading it hasn't already. Then when someone adds to the thread you can delete all entries in the table for that thread, thus making it unread for all users.

    The table structure would be something like

    forum_id thread_id user_id
    

    With the optional extra has_read_id for your primary key, with the other fields making a composite key.

提交回复
热议问题