I have a little problem to sort my results by ID when I place grouped:
$get_seen_messages = mysql_query("SELECT *
FROM chat
WHERE userto='$login_cookie'
AND status='seen'
GROUP BY userfrom
ORDER BY id DESC");
Please help me :D