looking to try and figure out how to get a list of posts from a usergroup on the homepage. like a list of the top most recent topics but only collected from a certain usergroup
SELECT thread.*,user.usergroupid,user.username FROM thread LEFT JOIN user ON(thread.postuserid=user.userid) WHERE usergroupid = X ORDER BY dateline DESC LIMIT Y
replace X with the usergroup id and Y with the number of threads you want to display