//testing templates ....
include "class.FastTemplate.php";
$tpl = new FastTemplate("/usr/local/httpd/htdocs/danny/templates");
$tpl->define(array("foo => foo.tpl","bar => bar.tpl"));
$tpl->assign(NAME,"me");
$tpl->assign(PAGETITLE,"Welcome!");
$tpl->parse(PAGECONTENT,"foo");
$tpl->parse(MAIN,"bar");
$tpl->FastPrint(MAIN);
PHP error ...
Fatal error: Call to undefined function: new fasttemplate() in /usr/local/httpd/htdocs/danny/testtemplate.php on line 5
any help ....
thanks ....
danny