Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

  1. message threads whether from me or to me need to be shown in hierarchical order
  2. 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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.