Quote:
Originally Posted by ShadyB
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..
|
Your getting parse errors probably because your HTML code is not escaped correctly.
For example this bit here
Code:
<div id="welcome" class="post">
<h2 class="title">Welcome To The Members Area!</h2>
<h3 class="date"><span class="month">Updated May 20th 2007 </span><span class="year"></span></h3>
<div class="meta">
<p>ShadyB<a href="#"></a></p>
</div>
should be done something like
Code:
<?php
if ($vbulletin->userinfo['userid'] >0) {
echo"
<div id=\"welcome\" class=\"post\">
<h2 class=\"title\">Welcome To The Members Area!</h2>
<h3 class=\"date\"><span class=\"month\">Updated May 20th 2007 </span><span class=\"year\"></span></h3>
<div class=\"meta\">
<p>ShadyB<a href=\"#\"></a></p>
</div>
";
}
?>
It does require some basic PHP skills to do this.
If you have not used PHP/HTML togeather before you really should do a couple of online tutorials on it.
Its a little confusing at first, but not hard to pick up the basics (which is all you need for this)