<?php
 
// -- Simple Template System
 
// -- Powered by Erick-Master
 
// -- CTM TEAM Softwares
 
// -- www.ctmts.com.br
 
// -- [email protected]
 
// -- 29/04/2011
 
// -- example.php
 
 
require_once("template.class.php");
 
 
define("TITLE", "Teste"); // -- Page Title
 
$template = new template(); // -- Load Class
 
 
$template->set("TITLE", TITLE); // -- Add the tag {TITLE}, loading the constant "TITLE"
 
 
switch($_GET["page"])
 
{
 
    case "home" :
 
    $template->fread("template/index.tpl.php"); // -- Load the index.tpl.php
 
    break;
 
    default : 
 
    $template->fread("template/index.tpl.php"); // -- Load the index.tpl.php
 
    break;
 
}
 
 
$template->show(); // -- Show template
 
 
?>
 
 |