Quote:
Originally Posted by VeoMorphine
I just want to make a correctiion to your code:
You use if($bbuserinfo[usergroupid]. On vb3, there is a new is_member_of function, that will search your primary and secondary groups for that user. Here is how the code works with it.
PHP Code:
<?php
require_once('./global.php');
if ($_REQUEST[filename])
{
if (is_member_of($bbuserinfo, 6) OR is_member_of($bbuserinfo, 5) OR is_member_of($bbuserinfo, 7));
{
header("Location: $_REQUEST[filename]");
}
}
?>
that makes it so usergroup 6 5 and 7 can download that file.
|
Ah okay thanks I never knew about that function