<?php
// load Smarty library
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = 'C:/xampplite/htdocs/smarty/templates/';
$smarty->config_dir = 'C:/xampplite/htdocs/smarty/config/';
$smarty->cache_dir = 'C:/xampplite/smarty/cache/';
$smarty->compile_dir = 'C:/xampplite/smarty/templates_c/';
$smarty->assign('name','Penguin !!');
$smarty->display('index.tpl');
?>
index.tpl
<html>
<body>
Hello, {$name}
<body>
<html>