First page
Back
Continue
Last page
Overview
Graphics
Using it...
Install it:
http://smarty.php.net/
- per project vs shared?
Include it:
require_once 'lib/Smarty-2.6.16/Smarty.class.php'
Call it:
$smarty = new Smarty();
Feed it:
$smarty->assign('message', 'Hello World');
Show it:
$smarty->display('templateName.html');