Ok, I see whats gone wrong.
The "have stuff here" line is where you put your page contents.
For example;
PHP Code:
<?php
chdir('forums');
require_once('forums/global.php');
?>
<!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>
<?php include('login_inc.php'); ?>
<?php
if ($vbulletin->userinfo['usergroupid'] == '9' )
{
echo "
<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>nbsp;</p></td>
<td width=\"50%\" align=\"left\" valign=\"top\"><p align=\"center\" class=\"style1\">Church News & Announcements </p>
<p>";
include('news/index.php';
echo " </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>";
} else {
echo "You do not have permission for this page"; }
?>
</body>
</html>
I havent tested the code cos Im at work.
I may have missed escaping a " somewhere (I have a habit of doing that) but you should get the idea of how it works.