Right now I have it at the top of the page, and I'd like to restrict this page's access to those who attend here only. I've also tried replacing the 'Have stuff for here' with the content of the page, and that didn't work either. I realize I must be missing the obvious, but I'm just stumped at this point. Thanks for any help.
PHP Code:
<?php
chdir('forums');
require_once('forums/global.php');
?>
<?php
if ($vbulletin->userinfo['usergroupid'] == '9' )
{
echo "Have stuff for here";
} else {
echo "You do not have permission for this page"; }
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Richmond church of Christ Member Services</title>
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
body {
background-color: #0066FF;
}
#Layer1 {
position:absolute;
left:11px;
top:8px;
width:25px;
height:70%;
z-index:1;
background-color: #0000FF;
}
#Layer2 {
position:absolute;
left:52px;
top:19px;
width:8px;
height:90%;
z-index:2;
background-color: #0000FF;
}
.style1 {
font-size: 14px;
font-weight: bold;
}
.style3 {font-size: 10px}
-->
</style>
<link href="siteCSS.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p align="center"><img src="images/memserv.gif" width="484" height="37" align="middle" /></p>
<table width="80%" border="4" align="center" bordercolor="#999999" bgcolor="#FFFFFF">
<tr>
<td><table width="100%" align="center">
<tr>
<td width="50%" align="left" valign="top"><p>Welcome to the Richmond church of Christ Member Services area. Here you will find special areas and information specifically <em>for</em> members attending here in Richmond</p>
<p><?php include('login_inc.php'); ?> </p></td>
<td width="50%" align="left" valign="top"><p align="center" class="style1">Church News & Announcements </p>
<p>
<?php include('news/index.php'); ?>
</p></td>
</tr>
</table>
<p align="center"><span class="style3">©2006 Richmond church of Christ, Richmond, Kentucky, United States 40475 </span></p>
</td>
</tr>
</table>
</body>
</html>