PDA

View Full Version : Easy Way of Checking Forum Permisison with Array of ID's?


ZomgStuff
06-16-2008, 03:51 AM
I don't have a great grasp of bitfields and how they work, but here is my dilema.

How can I check to see whether a certain user can view a forum by it's forumid without actually being in that forum, just for referencing like in an array?

Thanks.

Dismounted
06-16-2008, 06:22 AM
$mypermissions = fetch_permissions($forumid);

ZomgStuff
06-16-2008, 02:23 PM
Thanks!