Quote:
Originally Posted by Acoly
Hi guys,
I have just created my first php vbulletin page following the instructions on the first page. Is there any way I can control the access to specific areas of my page according to the member's permission? If so can you point me to some code examples please?
TIA,
George
PS: Please be gentle PHP/vbulletin is fairly new to me  .
|
You can use this function:
PHP Code:
if (!is_member_of($vbulletin->userinfo, x, y, z)) {
// no permission if you aren't a member of usergroupid x, y, or z
print_no_permission();
}