mirror of
https://github.com/smarty-php/smarty.git
synced 2026-07-10 10:20:59 +02:00
16 lines
318 B
PHP
16 lines
318 B
PHP
<?
|
|
|
|
require("Smarty.class.php");
|
|
|
|
$smarty = new Smarty;
|
|
|
|
$smarty->assign("Name","Fred");
|
|
$smarty->assign("FirstName",array("John","Mary","James","Henry"));
|
|
$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
|
|
$smarty->assign("Class",array("A","B","C","D"));
|
|
|
|
$smarty->spew("./templates/index.tpl");
|
|
|
|
|
|
?>
|