I would like to emulate the facebook UI for their messaging/inbox/sent. I am referring to the messages users send each other and not posts.
At the moment I have separate inbox and sent box pages. I want to show one page for both. Requirements below.
- message threads whether from me or to me need to be shown in hierarchical order
- the single most recent message from each thread needs to be shown in the display regardless if I'm the sender or the receiver
Here is what my current query looks like:
QUERY A just gets the user id of the person who sent me a message
SELECT DISTINCT(fromuser) FROM messages WHERE touser=".escape($user_id)." AND touser_deleted='0' ORDER BY dte_sent DESC
Then the second query just gets the latest message from the sender to me from the first query
QUERY B
SELECT * FROM messages WHERE fromuser=".escape($QUERYA['fromuser'])." AND touser=".escape($user_id)." ORDER BY dte_sent DESC LIMIT 1
Doing it this way gets me close but no cigar. I have a similar query for the sent box.
I'd like to do this the most efficient way possible, with 1 query would be nice!
Please help