I have been asked to include some html snippet in this php/smarty page. It\'s basically a sales agreement at the end of an overview page before you pay.
What is the
Before you display the template, in the PHP file try this:
$smarty->assign('Sectionfile','section-name.html'); $smarty->display('template.tpl');
in the template itself:
{include file="html_dir/$Sectionfile"}