Easy - find the following code:
Code:
if ($forum_id) {
$forumid = "AND forumid=$forum_id";
}
and replace it with
Code:
if ($forum_id) {
$forumid = "AND forumid!=$forum_id AND forumid!=$forum_id2";
}
Now below the $forum_id variable at the top of the script, add
Code:
$forum_id2 = "FORUM YOU WANT POSTS FROM";
You can repeat this for more forums, adding an extra variable and SQL statement for each. Quite an untidy compromise, but it works!
Craig