Quote:
Originally posted by James Cridland
Want to turn this off for a particular forum? Perhaps your site feedback forum?
Click into a forum, and look at the URL in your browser to to discover its "forumid" number. It's the one right at the end of the URL.
Then change the "if" statement above to...
if($bbuserinfo["posts"] < 10 && $forumid<>11 && $forumid<>23)
This will let newbies to post new topics to my forum number 11 or forum number 23.
|
how about making the statement:
Code:
if($bbuserinfo["posts"] < 10 && $forumid<>11 && $forumid<>23)
into something like a set statement (or values in an array) so you can avoid putting multiple
&&. I'm still learning PHP