Példa:
{* sample.tpl *}
<html>
<body>
Hello, {$name}, {$greetings}.
</body>
</html>
// sample.php
include 'Smarty.class.php';
$sample_name = 'Gipsz Jakab';
$smarty = new smarty();
$smarty->assign('name', $sample_name);
$smarty->assign('greetings', 'Jó reggelt');
$smarty->display('sample.tpl');