PHP Classes

File: example_php4.php

Recommend this page to a friend!
  Classes of Brant Messenger   3SS Template Engine   example_php4.php   Download  
File: example_php4.php
Role: Example script
Content type: text/plain
Description: PHP4 Example
Class: 3SS Template Engine
Template Class Outputs in String or File
Author: By
Last change: Added the setConstants function example and writeOutput example.
Date: 18 years ago
Size: 503 bytes
 

Contents

Class file image Download
<?php
require("threessTE.class.php");

define('EMAIL_DEFAULT','test@test.com');

$t = new threessTE("template.htm");
$t->setContants(); // SETS ALL CONSTANTS

$varName = 'HEAD_TITLE';
$t->setData($varName,'Welcome!');

if (
$data)
{
  
// Example of getting a template without any variables
  
$t->setData('CONTENT',$t->getFile("newTemplate.htm"));
}
else
{
   
$t->setData('CONTENT','Here is the content.');
}

echo
$t->returnOutput();
//or $t->writeOutput($destinationFile);
?>