MyBB Community Forums

Full Version: user id on acp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you search for say the 100th member on the ACP.
./admin/index.php?module=user/users&action=edit&uid=100

No other way I don't think...
(2009-05-05, 10:21 PM)MattRogowski Wrote: [ -> ]./admin/index.php?module=user/users&action=edit&uid=100

No other way I don't think...

that doesnt work as i dont have 100 members yet but it has found a user...
Well, you don't have to have 100 registered members to have a uid of 100, if some accounts were deleted or something.
(2009-05-05, 10:36 PM)MattRogowski Wrote: [ -> ]Well, you don't have to have 100 registered members to have a uid of 100, if some accounts were deleted or something.

o thats a table turner... so how would i know who is the 100th member
Well technically, the person who has the uid of 100 is the 100th member of your forum.

The only way I can think of is to look in the database - pull up the _users table, then order by UID ascending, then limit 0 - 100. The last row is your 100th member.