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
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
Right, but he won't be able to export it as he asked in the OP.