<?php

require('Smarty-3.1.8/libs/Smarty.class.php');
$smarty = new Smarty;

$words = array('autocomplete', 'autocorrect', 'autocannibalism');

$smarty->assign('words', $words);
$smarty->assign('title', $_GET['title']);
$smarty->display('example.tpl');

?>
