Sample Code index.php
<?php

//------------------------
//-- Main Page
//--  index.php
//--  © Gregory Koberger 2007
//--  gkoberger@gmail.com
//------------------------

  //----------------
  //-- Include files
  //----------------
    include "functions.php";

  //-------------------
  //-- Set up variables
  //-------------------
    $act = $_GET["act"];

  //--------------------------
  //-- Connect to the database
  //--------------------------
    // $functions->connect();
    //-- This is where/how the connection would be made

  //-----------------
  //-- Direct Traffic
  //-----------------
    switch ($act)
    {
      case "code":
        $output["output"] = $pages->showFile( $_GET["file"] );
        break;
      default:
        $output["output"] = $pages->main();
    }

  //------------------
  //-- Output the text
  //------------------

    $display = $functions->outputSkin ($output, "layout.html");

    echo $display;
?>