I'm writing chat system like facebook or whatsapp.
e.g
http://masters.az/message
login:test
pass:test
I wrote inside of message.But outside(inbox) is problem.If you enter this site you can see what I want.I need the last message of each chat and order by time
.
mysql form is
id|mail|by|to|time|read
my current mysql_query is:
$usid=my user id
$q=mysql_query("
select * from (select * from `mail` ORDER BY id DESC) AS x
where (`to`='$usid' || `by`='$usid')
group by (`by`) desc order by vaxt desc
");