PDA

View Full Version : Listing a usergroup on non vb php page...


por4x4
05-19-2005, 05:21 AM
Ok, I have a usergroup composed of paying advertisers. I want to create an ad index that lists their username, location, and web address (just like the 'show forum leaders' does). Is this possible to do on a non vb .php page?

TIA...

Andreas
06-01-2005, 12:08 PM
Basically it's

SELECT userid, username, field2 FROM user LEFT JOIN userfield ON (userfield.userid=user.userid) WHERE usergroupid=X OR FIND_IN_SET('X', membergroupids)

Where X is the ID of this usergroup.