Ok I knew where to put that, but its the restricting bit I cant do...
PHP Code:
<?php
if ($vbulletin->userinfo['usergroupid'] == '6' )
{
echo "Have stuff for here";
} else {
echo "You do not have permission for this page"; }
?>
Its that bit that I dont know where to place.. I just keep getting parse errors if I try and do it...
I want it so that the page is viewable to people that are logged in, but not to people that arent..