Quote:
Originally Posted by ozzy47
What is it exactly you are trying to do, perhaps post the code and explain what it is you want.
|
i want make a dropdown list for only category that allowposting ...
i make it by another way , by product seeting i put all categorys and i can Chose the categorys that i want to exclude from appearing .
Code:
$forumbits_mod_forums = explode(",", $vbulletin->options['forumbits_mod_forums']);
$getforum = $db->query_read("SELECT forumid, title_clean FROM " . TABLE_PREFIX . " forum where forumid NOT IN ('" . implode("','",$forumbits_mod_forums) . "') order by displayorder ASC ");
but i want to know if there easy way to get only categorys (by query) that users can put on it new threads and exclude the others .
thnx ...