Compdigitec Labs

« | Home | »

Simple Template Engine – your lightweight templating engine in PHP

By admin | February 2, 2009

The Simple Template Engine is a very lightweight template engine to use in PHP if your webhost does not allow you to run something like Smarty. It is simple, lightweight and fast.

To parse a file:

<?php

// include simple template engine
include("tpl.class.php");

$tpl = new template();

$tpl->assign(Array('content'=>"Hello World from Simple Template Engine!"));

// If you want to display it directly
$tpl->display('example.tpl');

// If you want to send it to another function/class for more processing
some_function($tpl->parse('example.tpl'));

?>

example.tpl is:

<html><head><title>{content}</title></head><body><h1>{content}</h1></body></html>

If you found this article useful or helpful, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!

If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!

Topics: (X)HTML, PHP | 15 Comments »

15 Responses to “Simple Template Engine – your lightweight templating engine in PHP”

  1. andrew Says:
    March 4th, 2009 at 08:51

    Hi!
    Very nice template system 😉

    I wonder how can I use php code in the template file? Is it possible?

    Thanks

  2. admin Says:
    March 7th, 2009 at 05:38

    @andrew:

    Where you would use:

    You would use:

    (template code)
    Test is %number%

    (php code)
    assign(Array(‘number’=>strval($s)));
    $tpl->display(‘template.tpl’);

    ?>

  3. fruit party Says:
    March 29th, 2025 at 05:02

    … [Trackback]

    […] Information to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  4. บริการรับเพิ่มไลค์ เพิ่มความน่าเชื่อถือ Says:
    March 29th, 2025 at 11:48

    … [Trackback]

    […] Read More here to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  5. push888 Says:
    March 29th, 2025 at 21:10

    … [Trackback]

    […] Find More on on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  6. นิยาย Says:
    March 30th, 2025 at 06:38

    … [Trackback]

    […] Here you will find 82871 additional Information on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  7. Kimberly Says:
    March 30th, 2025 at 14:22

    … [Trackback]

    […] There you will find 83960 additional Info to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  8. DeepBLOK ระบบสมาชิก Says:
    April 22nd, 2025 at 00:01

    … [Trackback]

    […] Read More on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  9. มีบุตรยาก Says:
    May 9th, 2025 at 09:50

    … [Trackback]

    […] Find More Information here to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  10. clash Says:
    May 15th, 2025 at 10:30

    … [Trackback]

    […] Read More here on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  11. เครื่องเป่าแอลกอฮอล์ Says:
    May 16th, 2025 at 23:37

    … [Trackback]

    […] Find More Info here to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  12. betflix wallet Says:
    June 1st, 2025 at 00:10

    … [Trackback]

    […] Find More Info here to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  13. best Aviator game website in 2025 Says:
    June 7th, 2025 at 04:22

    … [Trackback]

    […] Find More here to that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  14. Book of Ra Says:
    June 14th, 2025 at 10:52

    … [Trackback]

    […] Read More here on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

  15. ไซด์ไลน์ Says:
    July 13th, 2025 at 20:52

    … [Trackback]

    […] Find More on that Topic: compdigitec.com/labs/2009/02/02/simple-template-engine-your-lightweight-templating-engine-in-php/ […]

Comments