The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
How would one go about counting the sub parts of the array? i've tried various count() variations but can't seem to crack it
![]() the reason i ask is because i have a modified version of showgroups which acts as a rollcall and want to show the total number of members belonging to each class (not forum group). heres the snippit *cough* of code which refers to the building of my array: PHP Code:
|
#2
|
||||
|
||||
![]()
Seems like I don't understand anything ^.^
What do you want to count? |
#3
|
|||
|
|||
![]()
want to count the sub totals of each class:
heres a working example of my page ![]() Thanks ![]() |
#4
|
||||
|
||||
![]()
OK ... these things like Bards, Beastlords, etc come from table userclass which is linked to table user by userclassid.
And you want to know how many members are in each class, right? Then use this query [sql] select userclassid, count(userclassid) as total from user group by userclassid [/sql] |
#5
|
|||
|
|||
![]()
thx KirbyDE. I think this will work if i could only use it properly :P
I first assigned it to a var: $result = $DB_site->query_first("select userclassid, count(userclassid) as total from user group by userclassid"); and then it just showed as 'Array' in each case of $result in the output. So i modified the string in the html template to call $result[total] but now it outputs what appears to be the total of all users (506). Where am i going wrong ? ![]() heres the modified code: PHP Code:
|
#6
|
||||
|
||||
![]()
query_first will only give you the first result row.
If this is what you want you could use [sql] select count(*) from user where userclassid=$groupinfo[userclassid] [/sql] But I wouldn't do this, as it would cause one additional query for each class. With the query I posted before you can retrieve the information you want (how many users are in each class) with one query. Therefore you should use smth. like this: PHP Code:
PHP Code:
PHP Code:
|
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|