I forgot about this thread.
To get multiple forums you will have to pass multiple forums to the function...
Instead of 1 you would pass 1,2,3,4,5,6
You also have to change one line of the code...
Where it says:
PHP Code:
$forumsql=" AND forumid=$forumid";
Change it to:
PHP Code:
$forumsql=" AND forumid IN (0,$forumid)";
Hooper:
You did it correctly. I added a new function as well.