Prototype Webpage

This page illustrates the usage of the MAE web framework. Each page must begin by the statements

 
<?php
require_once "definitions.php";
require "session.php";
html_header("Page Title","standard.css");
?>

This ensures that the session is properly established, and that an HTML header containing the page title is generated. It also loads the appropriate style sheet (standard.css in this case).

The header bar and the left hand menu are generated by including the files "header.php" and "menu.php":

<?php
include "header.php";
include "menu.php";
?>

The actual content of the page is then added, enclosed in a divison tag:

<div class="text-position" name="content">

<h1> Prototype Webpage </h1>
This page illustrates the usage of the MAE web framework.
Each page must begin by the statements

....
</div>

Finally, the page must be terminated by calling html_footer().

<?php html_footer(); ?>