basicly i have a vbulletin forum and i am trying to create a simple web page , now the thing that i do not now is how can i obtain the current Members that are registered in the forum and show it in my web page

Recommended Answers

All 4 Replies

Since vBulletin is written in PHP, I've moved this thread to the PHP Forum.

Stevoo, you should really try seeking help from vBulletin.com / org for your issues :)

basicly i have a vbulletin forum and i am trying to create a simple web page , now the thing that i do not now is how can i obtain the current Members that are registered in the forum and show it in my web page

The forum you are looking at right now is vBulletin. Look at the menu at the very top. See Members List? Is that what you want? I'd think vBulletin comes with a Member list page. If so, just look at the code in that page to find the part(s) you need.

Asking at www.vbulletin.org is your best shot.

But some psuedo code:

// connect to forum database first (use mysql_connect(), mysql_select_db())

// Then simply do something like:

$members = mysql_query("SELECT COUNT(*) AS count FROM user");

// $members['count'] should contain the total members
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.