<?php 
// Include the template class 
include("template.class"); 
// Assign a few variables 
$page_title = "Welcome to RLMITCONSULTING.COM"; 
$bg_color = "#0000FF"; // was #6B238E
$user_name = "ROBBIE L. MILLER INFORMATION TECHNOLOGY CONSULTING, Inc."; 
$copy_right = "Copyright &copy; 2008 by Robbie L. Miller I.T. Consulting,Inc."; 
$last_revised = "Site Last Revised July 17, 2008"; 
// Instantiate a new object 
$template = new template; 
// Register the file "homepage.html", assigning it the pseudonym "home" 
$template->register_file("home", "homepage.html"); 
// Register a few variables 
$template->register_variables("home", "page_title,bg_color,user_name,copy_right,last_revised"); 
$template->file_parser("home"); 
// output the file to the browser 
$template->print_file("home"); 
?> 
