Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nando Vieira  >  PHPTemplate  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: index page
Class: PHPTemplate
PHP based template engine
Author: By
Last change:
Date: 2005-11-14 12:45
Size: 532 bytes
 

Contents

Class file image Download
<?php
require_once 'PHPTemplate.class.php';

$rows = array(
                array(
1.11.21.3),
                array(
2.12.22.3),
                array(
3.13.23.3),
                array(
4.14.24.3)
            );

$tpl = new PHPTemplate();
$tpl->add('title''My Page title');
$tpl->add('content''<p>Here is my content!</p>');
$tpl->add('current_year'date('Y'));
$tpl->add('rows'$rows);
$tpl->add('rows_count'count($rows));
$tpl->load('footer''footer.tpl');
$tpl->display('template.tpl');
?>