MyBB Community Forums

Full Version: user groups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
could some one please tell me how to find the id no.s for the different user groups please
what i need to find out is the group id no.s for additional groups that we have set up
If you view the source of the frame, you'll find a bunch of HTML like this:
<tr class="altbg2">
<td>[Mask] IB Council</td>
<td align="center">0 (2)</td>
<td align="center" nowrap="nowrap">
<select name="usergroup_10" onchange="usergroup_hop(10);">
<option value="edit">Edit Usergroup</option>
<option value="delete">Delete Usergroup</option>
<option value="listusers">List Primary Users</option>
<option value="listsecondaryusers">List Secondary Users</option>

<option value="groupleaders">Group Leaders</option>
</select>
&nbsp;<input type="button" onclick="usergroup_hop(10);" value="Go" /></td>
<td>&nbsp;</td>
</tr>
The name of your group is on the second line (<td>[Mask] IB Council</td>), and the usergroup ID is the number in the parentheses here: usergroup_hop(10);

Otherwise you can browse the MySQL table mybb_usergroups.