Just passing through here for an unrelated reason but out of boredom decided to show whoever is interested how to do this... in sql the query looks something like this
Quote:
select p.pmtextid,t.fromuserid,u.username,count(*),t.titl e,t.message from pm as p left join pmtext as t on(p.pmtextid = t.pmtextid) left join user as u on(t.fromuserid=u.userid) group by p.pmtextid ORDER BY count(*) DESC
|
shows the highest mass pms. integrate this into whatever code you see fit.