PDA

View Full Version : usergroup posts displayed on homepage


dethfire
12-29-2004, 02:41 AM
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

rake
12-29-2004, 09:42 PM
use this query:

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

dethfire
12-30-2004, 02:11 AM
thanks rake! what file should I put this in if say I want the thread listed in the navbar template?

rake
12-30-2004, 01:23 PM
the navbar appears on most pages, so you'd have to put the code in the global.php file.

dethfire
01-10-2005, 05:54 AM
ok so lets say I run my query on global, how do I output my results to the navbar template?