Messaging System with PHP/MySQL

前端 未结 3 1897
囚心锁ツ
囚心锁ツ 2021-01-21 11:46

Hi I\'m trying to make a messaging system with php and mysql.

The mysql table is simple: id sender receiver text timestamp

I\'m trying to make the messaging some

3条回答
  •  情书的邮戳
    2021-01-21 12:11

    DESC for receive New row's . AND ASC or NOT set, Default is ASC:

       (SELECT * FROM messages WHERE receiver = 13 OR sender = 13 GROUP BY receiver,sender ORDER BY id DESC)
    

    AND SET LIMIT 1 ,1 AFTER ORDER BY
    i think you need it
    (receiver = 13 AND sender = 'usersender id' ) OR (receiver ='usersender id' AND sender = 13 ) Try it!

提交回复
热议问题