Sorry if i do some mistakes English is my second language.
Well, I've got this |
|
V
Warning: Bad arguments to implode() in c:\Inetpub\wwwroot\try2\class.FastTemplate.php3 on line 157
ERROR: get_template() failure: [c:/php/FastTemplate/templates/table_row.tpl] Bad arguments to implode()
And here it is my source code
<?
include("class.FastTemplate.php3");
$tpl = new FastTemplate("c:/php/FastTemplate/templates");
$tpl->define( array( "main" => "main.tpl",
"row" => "table_row.tpl",
"all" => "table_all.tpl" ));
$tpl->assign("TITLE", "I am the title.");
$defaults = ( array( "FONT" => '<font size=+2 face=helvetica>',
"EMAIL" => 'cdi@thewebmasters.net' ));
$tpl->assign($defaults);
$tpl->parse("ROWS", ".row"); // the '.' appends to ROWS
$tpl->parse("CONTENT", array("row", "all"));
$tpl->parse("CONTENT", "main");
$tpl->FastPrint(CONTENT);
$raw = $tpl->fetch("CONTENT");
echo "$raw\n";
Thank you very much. I really appreciate your help.
Best Regards.😉