Login   Register  
PHP Classes
elePHPant
Icontem

File: templates/tpl_in_tpl.tpl

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Valentin  >  IDtpl  >  templates/tpl_in_tpl.tpl  >  Download  
File: templates/tpl_in_tpl.tpl
Role: Auxiliary data
Content type: text/plain
Description: template
Class: IDtpl
Template engine based on PHP template scripts
Author: By
Last change: update to new version
Date: 2009-04-05 07:33
Size: 282 bytes
 

Contents

Class file image Download
<?
//this template file shows how you can call template files INSIDE other template file
$this->template('header.tpl');
$this->display();
$this->template('content.tpl');
$this->display();
?>
write some text and stuff
<?
$this->template('footer.tpl');
$this->display();
?>