Skip to content
Advertisement

free lightweight template system

Is there any free, lightweight, non-MVC template systems made pure with PHP? I’m not interested in Smarty.

Advertisement

Answer

Sure:

<?php require("Header.php"); ?>

  <h1>Hello World</h1>
  <p>I build sites without "smarty crap"!</p>

<?php require("Footer.php"); ?>
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement