MyBB Community Forums

Full Version: How can I call referred members of X user?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to call users referred but I don't know where to start.

I want to be able to find all members referred by UID 200.

Kinda like admin CP "show referred members" How can I call this data using a php function?

I would like to be able to get a list of UIDs or usernames. Then I need to call the post count of said UID.

This is for a site development project I'm trying to do.


Is there a plug in that dose advanced referred like this already? I searched didn't find anything that could help me.
Referrals are saved in mybb_users table, in referrer column as UID. A simple query with WHERE checking for specific user UID (in your example 200) in the mentioned column should do the thing. You can also select post count and username from the same table.