Quote:
Originally Posted by ozzy47
You can do that from phpmyadmin within your cpanel, by running this query:
Code:
SELECT * FROM user
WHERE usergroupid = 44
You can then export the list from there.
|
You can run that directly in admincp>maintainance>execute sql query and you'll get a list

(don't forget to add any table prefix you use before "user" so maybe you use vb as the prefix and it would look like this
PHP Code:
SELECT * FROM vb_user
WHERE usergroupid = 44