Friday, February 8, 2008

Structure of a Users Page

<?php
include("unregistered/header1.php");
?>
<title>Innes Lab::(Name of the Page)</title>
<?php
include("user/userheader2.php");
?>
<body>
<?php
include("user/userLinks.php");
This file will change depending on the which link you want to be active. Make sure use change the hrefs appropriately.


include("unregistered/banner.php");
?>

<div id="page">

This is where you will show, whatever you want to show to the user.

An Example of this structure can be found at http://discern.uits.iu.edu:8490/UI/userHomePage.php

</div>
<?php
include ("unregistered/footer.php");
?>

0 comments: